Welcome to the new blog. This site is powered by Markdown files stored in content/posts.
Writing Posts
- Write posts in plain
.mdfiles. - Add frontmatter for
title,excerpt,date, and optionaltags. - Use standard Markdown with GitHub Flavored Markdown extensions.
Code Highlighting
Here is some syntax-highlighted TypeScript:
interface Post {
slug: string;
title: string;
tags: string[];
}
function getPostUrl(post: Post): string {
return `/blog/${post.slug}`;
}
Tables
| Feature | Status |
|---|---|
| Syntax highlight | Done |
| Copy button | Done |
| Table of contents | Done |
| Tags | Done |
| Reading time | Done |
What's Next
More posts coming soon on software architecture, cloud infrastructure, and the tech stack behind the projects I work on.