Your post

·Subscribe via RSS

examplemarkdown

This is an example post that doubles as a Markdown rendering reference. Replace it with your own writing, or remove it if you’re not running a blog.

Headings, emphasis, and paragraphs

The prose typography here is tuned for long-form reading. Headings render as h2 through h6. The h1 comes from the post title shown above. Paragraphs are separated by blank lines. Bold and italic both work, as does inline code.

Lists

Unordered:

  • One item
  • Another item
  • A third item

Ordered:

  1. First step
  2. Second step
  3. Third step

Code blocks

Fenced code blocks render in a monospace font with a muted background:

export function greet(name: string): string {
return `Hello, ${name}!`;
}

Blockquotes

Use blockquotes for emphasis, attribution, or callouts. The prose style adds a left border and muted text inside.

Standard Markdown links work and pick up the prose link styling.