This page exists to check how common Markdown elements render on the site.
Headings
Third-level heading
A normal paragraph with bold text, italic text, bold italic text, and inline code.
You can also test a normal link inside a sentence.
Lists
- First bullet
- Second bullet
- Third bullet with
inline code
- First numbered item
- Second numbered item
- Third numbered item
- Nested list test
- Child item one
- Child item two
Blockquote
Good defaults matter.
So does keeping the publishing workflow boring.
Code Blocks
python3 -m venv .venv
source .venv/bin/activate
make build
def greet(name: str) -> str:
return f"Hello, {name}"
print(greet("world"))
Horizontal Rule
Table
| Format | Supported | Notes |
|---|---|---|
| Headings | Yes | #, ##, ### |
| Fenced code blocks | Yes | Language classes included |
| Tables | Yes | Via Python-Markdown extra |
| Blockquotes | Yes | Standard Markdown syntax |
Mixed Content
Here is a paragraph followed by a short list:
- Keep writing easy
- Keep output static
- Keep tooling understandable
And a final paragraph to check spacing after lists and tables.