Included in syntakts-core
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")
Bold
**Bolded**
Bolded
Italics
*Italics*
Strikethrough
~~Stikethrough~~
Underline
__Underline__
We also offer some more advanced rules
val nodes = MarkdownSyntakts.parse(""" # Hello This has some *more advanced* markdown ### :) """.trimIndent())
Header
# Header *
# Header
* Header supports up to 6 styles, with any more #s just using the h6 style
Last updated 2 years ago