Hello World: MDX + Astro Starter
First post to verify MDX rendering, code blocks, inline components, and language switching.
Why Astro
Static-first, islands architecture, zero default JS — for a content-driven personal site, this combo has the lowest writing friction.
Code block test:
function fib(n: number): number {
if (n < 2) return n;
return fib(n - 1) + fib(n - 2);
}
Inline code works too. bold, italic, links all render naturally.
Next steps
- Wire up Giscus comments
- Add RSS + sitemap
- Write the first real AI note
Was this useful? A rating helps me pick the next topic.
Click a star to rate · Only anonymous fingerprint + timestamp stored
评论 · Comments