How to add docs
Docs are Markdown files. Edit them on GitHub or locally in any editor.
Edit an existing page
- Open the page on this site
- Click Edit this page at the bottom
- Make your changes
- Commit and open a pull request
Add a new page
1. Pick a section
Feel free to add a new section if needed, just double check with Half first!
| Topic | Folder |
|---|---|
| Desktop app | docs/app/ |
| Blender | docs/blender/ |
| Unreal | docs/unreal/ |
2. Copy the template
- Copy
docs/templates/new-page.md - Put it in the right folder
- Name it in kebab-case, e.g.
exporting-skins.md
3. Fill in the page
Set the header title (sidebar label) and description. Optional order sorts pages (lower values show up first):
md
---
title: Getting Started
description: One sentence about this page
order: 1
---The sidebar updates from the folder structure. Files in docs/templates/ and names starting with _ are excluded.
4. Sidebar groups
Nested group: add a subfolder (e.g. docs/blender/nodes/attributes/).
Sibling section: add sidebar.config.json in the folder:
json
{
"section": true
}That puts the folder next to its parent in the sidebar (e.g. Nodes beside Blender).
5. Add images (optional)
- Drop the file in
docs/public/(e.g.docs/public/app/skin-screenshot.png) - Reference it as:
md
Formatting cheatsheet
md
# Page title
Short intro sentence.
## Section heading
- Bullet list
- Another item
1. Numbered step
2. Next step
**Bold** and *italic*
[Link text](https://example.com)

::: tip Tip title
Helpful optional advice.
:::
::: warning Warning title
Something easy to get wrong.
:::
::: danger Danger title
Something that can break a project or lose work.
:::