The project is in a healthy, maintained state
Integrates advanced AsciiDoc processing into Bridgetown projects.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

 Project Readme

asciidoc_converter plugin for Bridgetown

a Bridgetown plugin to convert AsciiDoc files to HTML using asciidoctor. it also loads Front Matter from the AsciiDoc file - so you can write:

= My AsciiDoc Post
:layout: post
:author: me
:description: awesome description

this is my awesome post

note that the Front Matter doesn’t have a blank line at the top - this is important and an AsciiDoc rule besides

Installation

run this command to add this plugin to your site’s Gemfile:

bundle add asciidoc_converter

then add the initializer to your configuration in config/initializers.rb:

init :asciidoc_converter

Usage

the plugin will convert AsciiDoc files to HTML during the build process

Contributing

  1. fork it (https://github.com/SarahRogue/asciidoc_converter/fork)

  2. clone the fork using git clone to your local development machine.

  3. create your feature branch (git checkout -b my-new-feature)

  4. commit your changes (git commit -am 'Add some feature')

  5. push to the branch (git push origin my-new-feature)

  6. create a new Pull Request