Wiki Logo
gitWikiStop paying to host your wiki

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

  1. Create a new .md file in content/

  2. Add front matter:

    ---
    layout: page
    title: Your Article Title
    ---
    
  3. Write content using Markdown

Editing Existing Articles

  1. Find the article in _pages/
  2. Edit the .md file
  3. 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```