-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Tenry edited this page Mar 14, 2024
·
1 revision
For converting Markdown to HTML, the following packages are used:
- markdown-it
-
markdown-it-replace-link (
[Hello](test)
) -
markdown-it-sup (
29^th^
) -
markdown-it-sub (
H~2~0
) - markdown-it-deflist (Pandoc syntax)
It follows the CommonMark spec and adds syntax extensions.
- Headline:
## Level 2
,### Level 3
, ... (avoid level 1 headlines) - Italic:
*italic*
- Bold:
**bold**
- Bold and italic:
***bold & italic***
- Inline code: `code`
- Internal link:
[Main Page](Main_Page.md)