Markdown Syntax
ciderpress renders standard CommonMark plus GitHub Flavored Markdown (GFM) extensions out of the box. This page shows every core element rendered live — use it as an authoring reference and as a visual check for theme typography.
For extended components (cards, tabs, diagrams, math), see Built-ins. For inline superscript and subscript, see Superscript & Subscript.
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Paragraphs & inline text
A paragraph is one or more lines of text separated by a blank line. Inline emphasis composes freely: bold, italic, bold italic, strikethrough, and inline code.
Escape markdown characters with a backslash: *not italic* and `not code`.
End a line with a backslash to force a hard line break —
this line follows the break within the same paragraph.
Links
- Inline: ciderpress docs
- With title: hover me
- Bare URL: https://rspress.dev
- Reference-style: the frontmatter reference
Lists
Unordered
- First item
- Second item
- Third item with a longer line that wraps onto a second visual line to show how the hanging indent aligns under the text rather than the marker
Ordered
- First step
- Second step
- Third step with a longer line that wraps onto a second visual line so the marker-to-text gap and hanging indent stay consistent with unordered lists
Nested & mixed
- Top-level ordered item
- Nested unordered child
- Another child
- Deeply nested ordered item
- Sibling
- Back to the top level
- Nested ordered child
- Sibling child
Task lists
- Completed task
- Another done item
- Outstanding task
- Blocked task
Blockquotes
A single-line blockquote.
A multi-line blockquote.
It can span paragraphs and contain inline formatting and links.
Nested blockquotes are supported too.
Code
Inline const answer = 42 sits within a sentence.
Fenced blocks carry a language for syntax highlighting:
Tables
Columns support alignment:
Horizontal rule
Content above the divider.
Content below the divider.
Images
GFM footnotes render as linked references1 and collect in an auto-generated section at the foot of the page2.