Markdown kitchen sink

DATE September 12, 2026//TIME 1 MIN

Plain .md works alongside .mdx. This post shows off the typography defaults.

Text

Regular text, bold, italic, inline code, and a link.

A blockquote, for when someone else said it better.

Lists

  1. First
  2. Second
  3. Third
  • Bullet one
  • Bullet two

Code

const posts = await getCollection('blog');
const tags = [...new Set(posts.flatMap((p) => p.data.tags))];

That is the whole toolkit.