Markdown plugin features
mainLeafWiki supports several markdown-it syntax plugins for extended functionality:
- Emojis: Use
:emoji_name:(e.g.,:wink:) or emoticons (e.g.,:-)) to render icons. - Subscript/Superscript: Use
^text^for subscript and~text~for superscript. - Inserted/Marked Text: Use
++text++for<ins>and==text==for<mark>. - Footnotes: Use
[^id]for references and[^id]: definitionfor the footnote content. Inline footnotes use^[text]. - Definition Lists: Use
Term : Definitionfor standard style, or `Term
~ Definition` for compact style.
- Abbreviations: Define abbreviations using
*[HTML]: Hyper Text Markup Language. - Custom Containers: Use
::: typesyntax (e.g.,::: warning) to create custom content blocks.
Footnote 1 link[^first].
[^first]: Footnote **can have markup**
::: warning
*here be dragons*
:::