Series & tags
Series & tags
Tags
Every post has a tags: string[] in frontmatter. /tags lists them by usage
count, /tags/<tag> lists the matching posts.
tags: ["reference", "meta"]Series
A post can be part of several series, each with its own position. The series
name is a stable, language-neutral key shared by every part (e.g.
"endgame-basics"); give each locale its own display name with title (the
first part that sets it wins). order places the post within the series (1,
2, 3, …); parts without a number sort last, by publish date.
series:
- { name: endgame-basics, order: 2, title: "Endgame basics" }
- { name: reader-questions, order: 5 }A bare string (series: endgame-basics) or a list of strings is the
shorthand for entries without an explicit order.
/series lists every series with 2+ parts; each post page shows its position
(“Part 2 of 4”) and links to the previous/next part.