Contributing to the wiki
How to add or edit pages in the meemur wiki.
This wiki is an Astro site. Guideline docs are written
in MDX under src/content/docs/ and rendered automatically.
Add a new doc
- Create a file like
src/content/docs/my-topic.mdx. - Add frontmatter:
---
title: My topic
description: One-line summary.
order: 3
---
## Start at heading level 2
The page title comes from `title`, so begin your content at `##`.
- Run
bun run devand visit/docs/my-topic/.
Local commands
| Command | What it does |
|---|---|
bun run dev | Start the dev server |
bun run build | Build the static site |
bun run lint | Biome (format + lint) |
bun run check | Astro type-check |
Publishing
Push to main and redeploy. Because content is built into static HTML, your
changes go live on the next deploy.