How to Edit This Wiki
File Structure
content/ # All wiki content goes here
├── getting-started.md
├── example-article.md
└── your-new-article.md
Creating New Articles
Create a new
.md
file incontent/
Add front matter:
--- layout: page title: Your Article Title ---
Write content using Markdown
Editing Existing Articles
- Find the article in
_pages/
- Edit the
.md
file - Content updates automatically when saved
Markdown Cheatsheet
# H1 Heading
## H2 Heading
### H3 Heading
**bold text**
*italic text*
- bullet point
1. numbered list
[Link text](URL)
![Image alt](image-url)
`inline code`
```code block```