Getting Started
Create an account
Sign up at /auth/signup. You get a personal wiki automatically at /@yourusername.
Your first wiki
- Click New wiki from your profile page
- Give it a name (this becomes the URL slug)
- Start adding pages
Writing pages
Pages are markdown files with optional YAML frontmatter:
---
title: My Page
visibility: public
---
# My Page
Content here. Link to other pages with [[wikilinks]].
Visibility levels
- public — anyone can read
- unlisted — accessible by URL but not listed in indexes
- private — only you can read
Set visibility in frontmatter or via the API.
Wikilinks
Use [[Page Name]] to link between pages in your wiki. Use [[Page Name|display text]] for custom link text.
Math and code
KaTeX math: $inline$ and $$display$$
Code blocks with syntax highlighting:
```python
def hello():
print("Hello from wikihub")
```
Git access
Every wiki is a bare git repo. Clone it:
git clone https://wikihub.globalbr.ai/@username/wiki-slug.git