Welcome to your first markdown (.md) post. This page demonstrates the features supported by the Post Details route.
Why Markdown
Markdown keeps content simple and version-controlled. You can still use rich formatting, links, and code examples.
Example Code
export function greet(name: string) {
return `Hello, ${name}!`;
}
console.log(greet('world'));Key Points
- Uses frontmatter for metadata (slug, title, date, tags). - Headings become linkable anchors. - Code blocks include a copy button. - Related posts are suggested by tag and recency.
Next Steps
Create more posts in `src/content/posts` using `.md` or `.mdx` with similar frontmatter.