This theme comes with full MDX support, which means you can write standard markdown or import interactive Svelte components directly into your blog posts.

Markdown Syntax Cheat Sheet

Here’s a quick reference guide of common markdown styles.

Code Blocks

Syntax highlighting is powered by rehype-pretty-code. You can define code blocks with language indicators:

const greet = (name) => {
  console.log(`Hello, ${name}!`);
};

Formatting