Hello, world
This is the first post on this site. Posts are MDX files in content/posts/ — frontmatter for the title, date, and summary, then the body.
What works
Standard Markdown, plus a few things wired up already:
- Code blocks with syntax highlighting
- Links, internal and external
- Inline
code, blockquotes, lists
export function greet(name: string) {
return `Hello, ${name}`;
}
Custom inline components can be registered in
components/mdx.tsxand used directly in any post.