Asciidoctor-AsciiDoctor
This code is a WiP, and at this point is just a joke
An AsciiDoctor converter extension that converts AsciiDoc back to AsciiDoc text.
See also:
Thanks to Owen T. Heisler and his asciidoctor-multipage extension that I scavenged to bootstrap this workspace.
Usage
$ asciidoctor -r asciidoctor-asciidoc -b adoc \
-D test/out test/black-box-docs/sample/sample.adoc
Development
- To install dependencies, run
bundler install
. - To run tests, run
bundler exec rake
. - To build the current version, run
bundler exec rake build
; the gem will be placed in thepkg/
directory. - To release a new version:
- update the date in
asciidoctor-asciidoc.gemspec
, remove.dev
from the version inlib/asciidoctor-asciidoc/version.rb
, runbundler lock
, and commit the changes; - run
bundler exec rake release
; and - increment the version in
lib/asciidoctor-asciidoc/version.rb
(adding.dev
), runbundler lock
, and commit the changes.
- update the date in