Software
Hello, software
1 min read
A placeholder post in the software category — exists to verify the content collection schema, MDX rendering, and the post permalink route.
This is a stub post in the software category. It exists so the Phase 1 scaffold has at least one post per category to render. It also exercises the prose styles polished in Phase 3 — code blocks, lists, tables, blockquotes, links, and inline code.
Why this exists
The roadmap’s Phase 1 acceptance criteria require all three stub posts to render at their permalinks. This file is one of those three.
A code block with a filename
const greeting: string = "hello, world";
console.log(greeting);A code block without a filename
function add(a: number, b: number): number {
return a + b;
}
A small table
| Column | Purpose |
|---|---|
title | Post title |
category | One of the three folders |
tags | Optional, free-form |
A short blockquote, just to see how it nests with a link inside.
Real software posts will replace this content in Phase 6.