Uses Cucumber tests as a reusable set to test conversion between Markdown and AsciiDoc.
Currently, the following are supported by the Markdown to AsciiDoc converter:
-
Code blocks
-
Definition lists
-
Headings
-
Lines
-
Links
-
Lists (ordered, unordered, nested, mixed)
-
Basic markup (bold, italic, monospaced, etc)
-
Tables (including alignments)
Also, currently known not supported items are:
-
Table cell spanning
Add the following dependency to your project:
io.github.markdown-asciidoc:markdown-to-asciidoc:2.0.1
To use the library, call the following:
assertEquals("= Title", Converter.convertMarkdownToAsciiDoc("# Title"));
The Converter converts all Markdown input to AsciiDoc.
Currently, the conversion library is used in the IntelliJ AsciiDoc Plugin to seamlessly convert Markdown to AsciiDoc.
If you know of any projects using the library, please let me know on Twitter: @epragt.
If you find a bug or a missing feature, please report it the Github Issue Tracker.