Authoring
Frontmatter Reference
Field-by-field reference for wiki page metadata.
Each wiki markdown file supports the schema defined in src/content.config.ts.
Required field
title(string): page title shown in navigation, page header, and search results.
Optional fields
description(string): short summary used in listings and search snippets.section(string): sidebar grouping label. Defaults toGeneral. The order of sections is defined insrc/config/sections.ts, not in the content files.order(number): sort order within a section. Lower numbers come first.updated(date): optional last update marker.draft(boolean): whentrue, page is excluded from routes and search.
Example
---
title: Internal Linking
description: Keep wiki navigation coherent with stable link patterns.
section: Authoring
order: 3
updated: 2026-03-17
draft: false
---
Then continue with Internal Linking.