Skip to main content
All writing
metaannouncements

Hello, world

First article on the stack-driven writing channel — a smoke test for the content pipeline.

Bru1 min read

This is the first article in the /writing channel. If you're reading this through the pipeline, the MDX → JSON build is working.

What this is

A space to publish notes on building production-grade software with AI tooling, the framework behind the MVP Partner Service, and occasional opinions about boring infrastructure choices.

Smoke-test markdown

A short list:

  • GFM tables, footnotes, strikethrough — all on via remark-gfm.
  • Code blocks are tokenized at build time by rehype-pretty-code + Shiki.
  • No runtime markdown parsing — everything is pre-compiled.

A code block:

export function getAllArticles() {
  return articles
    .filter((a) => !a.draft)
    .sort((a, b) => +new Date(b.date) - +new Date(a.date))
}

More to come.