Skip to content

asciidocfx/MarkdownToAsciidoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markdown to Asciidoc Converter for Java

You can convert Markdown input to Asciidoc output with MarkdownToAsciidoc. MarkdownToAsciidoc converts Markdown content/files with Java 8 Nashorn engine.

Usage Examples

There is more than MarkdownToAsciidoc#convert methods for conversion. Some of them are below.

Synchronous way
String result = MarkdownToAsciidoc.convert("# Merhaba Dünya");
Asynchronous way
MarkdownToAsciidoc.convert("# Merhaba Dünya", r -> {
    System.out.println(r);
});
Path way
Path outputPath = Paths.get("E:\\output.asciidoc");
MarkdownToAsciidoc.convert("# Merhaba Dünya", outputPath);

License

MIT

About

Markdown to Asciidoc Converter for Java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages