Here is a second article — it lets us verify date sorting and navigation from the index.
Navigation
From the index, click any title to open the dedicated article page. The ”← All articles” link at the top brings you back to the list.
A subheading
The Markdown rendering reuses the same palette: primary violet for links, tertiary for accents and tags. A quick snippet to confirm the copy button works:
export function tagSlug(tag: string): string {
return tag.toLowerCase().normalize('NFD').replace(/\p{Diacritic}/gu, '');
}
Hover the snippet to reveal the Copy button in the top-right corner.