necmark is a haxe/neko library that wraps subset of cmark C library (that is one of reference implementations of CommonMark).
- no need to install
libcmark - supported output: HTML, XML, CommonMark, man, LaTeX
- supported options:
CMARK_OPT_UNSAFE,CMARK_OPT_NOBREAKS,CMARK_OPT_HARDBREAKS,CMARK_OPT_SOURCEPOS,CMARK_OPT_SMART - safe HTML output is on by default (like in
libcmark)
haxelib install necmark
or
haxelib git https://github.com/ConstNW/necmark
var src = "Hello World!";
var n = new necmark.Necmark(src);
var out = n.render(ncrHtml(necmark.Necmark.RENDER_OPT_UNSAFE));