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

  1. First numbered item
  2. Second numbered item
  3. Third numbered item

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:

And a final paragraph to check spacing after lists and tables.