This is the first post. Add your articles as .md files inside the articles/ folder, then run:
npm run build
Or to rebuild automatically on every change:
npm run watch
Frontmatter
Each article can have an optional YAML frontmatter block at the top:
---
title: My Article Title
date: 2026-05-20
---
Article content here…
If you omit title, the filename is used (with hyphens replaced by spaces). If you omit date, no date is shown.
Markdown support
All standard markdown is supported — headings, bold, italic, inline code, links, lists, blockquotes, code blocks, tables, and horizontal rules.
A blockquote looks like this — clean and minimal.
Lists
- Item one
- Item two
- Item three
- Ordered item
- Another one
- And a third
Table
| Column A | Column B | Column C |
|---|---|---|
| Value 1 | Value 2 | Value 3 |
| Value 4 | Value 5 | Value 6 |
That's all there is to it.