Devstand Wiki

Writing pages

Frontmatter, links, and sidebar order

Frontmatter

title is required, description is optional and shows under the heading and in search results.

---
title: Deploying
description: How releases reach production
---

Linking

Relative file paths resolve to page URLs, so links survive a rename:

See [Home](./index.mdx).

Without a meta.json, pages are listed alphabetically. Add one per folder to pin the order:

content/wiki/meta.json
{
  "pages": ["index", "writing-pages"]
}

Folders

A folder becomes a sidebar group. Give it a name with its own meta.json:

content/wiki/guides/meta.json
{
  "title": "Guides",
  "pages": ["deploy"]
}

On this page