oilleelssq-wq/moonmarkdown/types does not have a README file
pub(all) enum Block {
Document(Array[Block])
BlockQuote(Array[Block])
ListItem(Array[Block])
List(Int?, Bool, UInt16, Array[Block])
Paragraph(Array[Inline])
Heading(Int, Array[Inline])
FencedCodeBlock(String, String)
IndentedCodeBlock(String)
ThematicBreak
HTMLBlock(String)
LinkReferenceDefinition(String, String, String?)
}pub(all) enum CssPreset {
None
Default
Bootstrap
}pub(all) struct MarkdownOptions {
gfm : Bool
smart : Bool
html : Bool
entities : Bool
reference_links : Bool
highlight : Bool
css : CssPreset
}A CommonMark spec-compliant Markdown to HTML parser written in pure MoonBit
Dependencies