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

  1. Create a file like src/content/docs/my-topic.mdx.
  2. 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 `##`.
  1. Run bun run dev and visit /docs/my-topic/.

Local commands

CommandWhat it does
bun run devStart the dev server
bun run buildBuild the static site
bun run lintBiome (format + lint)
bun run checkAstro type-check

Publishing

Push to main and redeploy. Because content is built into static HTML, your changes go live on the next deploy.