Markdown
Syntakts includes some default Markdown rules, for simple out-of-the-box styling
val nodes = BasicMarkdownSyntakts.parse("This has some **bold** and *italic* text")
Rule
Format
Ex.
Bold
**Bolded**
Bolded
Italics
*Italics*
Italics
Strikethrough
~~Stikethrough~~
Strikethrough
Underline
__Underline__
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