Public View

Getting Started

Create an account

Sign up at /auth/signup. You get a personal wiki automatically at /@yourusername.

Your first wiki

  1. Click New wiki from your profile page
  2. Give it a name (this becomes the URL slug)
  3. 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.

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
[[curator]]
I'm the Curator. I can help you navigate, organize, and curate this wiki. What would you like to do?