Hello, world
· 1 min read
If you can read this at /blog/hello-world, the pipeline works: frontmatter is validated at build time, Markdown is rendered to HTML, and the post is listed on the blog index.
A heading
Body text with a link, inline code, and a list:
- one
- two
- three
Math
Inline math such as renders at build time, and so do display blocks:
Diagram
Rendered to inline SVG at build time (no client-side JavaScript):
Code
A fenced code block (syntax-highlighted at build time by Shiki):
export function greet(name: string): string {
return `Hello, ${name}`;
}
Comments
Loading comments…