Markdown
2026-02-02
Example Markdown Page
This is a standard text.
This is a blockquote.
It can span multiple lines and include bold, italic, andinline code.
Table of Contents
Text
Emphasis
- Bold
- Italic
- Bold + Italic
- ~~Strikethrough~~
- Underline (HTML)
- Highlight (HTML)
- Subscript (HTML): H2O
- Superscript (HTML): x2
Inline Code
Use command to execute a command.
Line Breaks
This is a line with two spaces at the end.
This is the next line.
Escape Characters
Use backslashes to escape characters: *not italic*, # not a heading.
Links & Images
Links
- Standard link: rarity.horse
- Link with title: rarity.horse
- Auto-link: https://rarity.horse
- Email auto-link: opal@rarity.horse
Reference Links
This is a reference link.
Images

Image as a Link
Lists
Unordered List
- Item A
- Item B
- Nested item B.1
- Nested item B.2
- Nested item B.2.a
Ordered List
- First
- Second
- Third
- Nested third.1
- Nested third.2
Mixed List
- Step one - Note A - Note B
- Step two - Note C
Definition List (not supported everywhere)
- Term 1
- Definition for term 1
- Term 2
- Definition for term 2
Code
Fenced Code Block
This is a plain code block.
It preserves whitespace and formatting.
Fenced Code Block (with language)
def pony(name: str) -> str:
return f"Hello, {name}!"
print(pony("Rarity"))
Inline Code in a Sentence
Run python build/build.py to build the site.
Tables
| Column A | Column B | Column C |
|---|---|---|
| Right | Left | Center |
| 123 | abc | ✅ |
| 456 | def | ❌ |
Table with Inline Formatting
| Feature | Status | Notes |
|---|---|---|
| Bold | ✅ | Works in most renderers |
| Italic | ✅ | Works in most renderers |
Code |
✅ | Works in most renderers |
Task Lists
- [x] Done item
- [ ] Not done item
- [ ] Another item
- [x] Nested done
- [ ] Nested not done
Horizontal Rules
Headings
H1
H2
H3
H4
H5
H6
Blockquotes
Single level quote.
Nested quote.
Back to nested content.
Callouts / Admonitions (renderer-specific)
[!NOTE] This is a “note” style callout (works on GitHub, not all Markdown parsers).
[!WARNING] This is a warning callout.
Details (HTML)
Click to expand
This content is hidden by default. - It can contain lists - **Bold text** - `inline code`Math
Inline math: $E = mc^2$
Block math:
$$ \int_{0}^{\infty} e^{-x} \, dx = 1 $$
Footnotes
Here is a statement with a footnote.1
And another footnote reference.2
HTML Mixed In
Custom HTML block: You can embed HTML in Markdown in many renderers.
Emoji
- 😀 😅 🚀 ✅ ❌ 🎉
- GitHub-style shortcodes (renderer-specific): :rocket: :tada: :white_check_mark:
End
Rarity is best pony!
~Author
