Skip to main content

Supported Markdown Syntax

Block-Level Elements

ElementSyntaxNotes
Header 1# textLargest heading
Header 2## text
Header 3### text
Header 4#### text
Header 5##### text
Header 6###### textSmallest heading
Bullet List- item, * item, + itemAll three markers supported
Numbered List1. item, 2. itemNumber is preserved in output
Code Block ```language ... ```Language tag is optional
Block Quote> textSupports multi-line
Horizontal Rule---, ***, ___Three or more characters
Paragraph(any other text)Default block type

Inline Elements

ElementSyntaxNotes
Bold**text** or __text__
Italic*text* or _text_
Bold Italic***text***Combined bold and italic
Inline Code`code`Preserves content literally
Strikethrough~~text~~Styled via DataTable (no line-through)
Link[text](url)Clickable with security validation

Nesting

Inline elements can be nested within any block-level element. For example, a bullet list item can contain bold text, inline code, and links. Code blocks are treated as literal content -- no inline parsing is performed inside them.