Markdown

Included in syntakts-core


Syntakts includes some default Markdown rules, for simple out-of-the-box styling

val nodes = BasicMarkdownSyntakts.parse("This has some **bold** and *italic* text")

We also offer some more advanced rules

val nodes = MarkdownSyntakts.parse("""
    # Hello
    This has some *more advanced* markdown
    ### :)
""".trimIndent())

* Header supports up to 6 styles, with any more #s just using the h6 style

Last updated