Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 824 Bytes

File metadata and controls

38 lines (24 loc) · 824 Bytes

MRover Docs

Documentation site for MRover Software, built with Astro Starlight.

Local Development

npm install
npm run dev

Adding a Page

  1. Create a .md file under src/content/docs/ in the appropriate section folder.

  2. Add a title in the frontmatter:

---
title: "Your Page Title"
---
  1. Add a sidebar entry in astro.config.mjs under the relevant section:
{ label: 'Your Page Title', slug: 'section/your-filename' },

The slug matches the file path under src/content/docs/ without the .md extension.

Modifying a Page

Edit the .md file directly. If renaming or moving, update the slug in astro.config.mjs.

Deleting a Page

Delete the .md file and remove its entry from the sidebar array in astro.config.mjs.