Skip to content
johnmccain.dev

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

src/lib/greeting.ts
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

ColumnPurpose
titlePost title
categoryOne of the three folders
tagsOptional, 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.