/writing/hello-world.md
Hello, World
1 min readmeta · intro
This is the first post on the blog. It exists mostly as a sanity check that the markdown pipeline is wired up — frontmatter, GFM, and code highlighting all work end to end.
What this is
Notes I take while building things. Sometimes a tutorial, sometimes a rant, sometimes just a place to think out loud.
A quick code sample
function greet(name: string) {
return `hello, ${name}`;
}
console.log(greet("world"));
Lists work too
- frontmatter parsed by a small hand-rolled parser (no runtime deps)
- reading time estimated at ~200 words per minute
- rendered with
react-markdown+remark-gfm+rehype-highlight
That's it for now. New posts get added by dropping a .md file into
content/blogs/ and pushing — Vercel rebuilds, and it shows up here.