Skip to content

How to edit the wiki

Every page on this wiki is a plain Markdown file, so editing is meant to be easy. There are two ways to do it.

Option 1 — Edit in your browser (easiest)

Section titled “Option 1 — Edit in your browser (easiest)”

The quickest way: on any page of the wiki, click Edit this page at the bottom — it takes you straight to that file on GitHub. Or start from the repo:

  1. Open the GitHub repository.
  2. Go to src/content/docs/ and find the page you want to change (or open a folder to add a new one).
  3. Click the ✏️ pencil icon to edit an existing page, or Add file → Create new file to make a new one.
  4. Write your changes in Markdown.
  5. Scroll down and click Commit changes.

That’s it — Cloudflare Pages rebuilds the site in about a minute and your change goes live.

If you’d rather work locally:

Terminal window
git clone https://github.com/SamDunthorne/SquibleWebsite.git
cd SquibleWebsite
npm install
npm run dev # live preview at http://localhost:4321

Edit files under src/content/docs/, then save and publish:

Terminal window
git add .
git commit -m "Describe your change"
git push

Create a new .md file inside src/content/docs/wiki/. Start it with this header (called “frontmatter”):

---
title: My New Page
description: A one-line summary.
---
Your content goes here...

The page automatically appears in the Wiki section of the sidebar.

# Big heading
## Smaller heading
**bold** *italic* `code`
- a bullet
- another bullet
1. numbered item
2. second item
[a link](https://example.com)
> a quote

Want tables, callouts, or images? See the Starlight authoring guide.