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:
- Open the GitHub repository.
- Go to
src/content/docs/and find the page you want to change (or open a folder to add a new one). - Click the ✏️ pencil icon to edit an existing page, or Add file → Create new file to make a new one.
- Write your changes in Markdown.
- Scroll down and click Commit changes.
That’s it — Cloudflare Pages rebuilds the site in about a minute and your change goes live.
Option 2 — Edit on your computer
Section titled “Option 2 — Edit on your computer”If you’d rather work locally:
git clone https://github.com/SamDunthorne/SquibleWebsite.gitcd SquibleWebsitenpm installnpm run dev # live preview at http://localhost:4321Edit files under src/content/docs/, then save and publish:
git add .git commit -m "Describe your change"git pushAdding a new page
Section titled “Adding a new page”Create a new .md file inside src/content/docs/wiki/. Start it with this header (called “frontmatter”):
---title: My New Pagedescription: A one-line summary.---
Your content goes here...The page automatically appears in the Wiki section of the sidebar.
Markdown basics
Section titled “Markdown basics”# Big heading## Smaller heading
**bold** *italic* `code`
- a bullet- another bullet
1. numbered item2. second item
[a link](https://example.com)
> a quoteWant tables, callouts, or images? See the Starlight authoring guide.