Table of Contents

Dokuwiki Tutorial

Markdown

The wiki uses Markdown, a lightweight markup language, for formatting text. Here's a list of the main features of Markdown

Headers

Use # symbols for headers. More # means smaller headers:

# Heading 1
## Heading 2
### Heading 3

Text Formatting

Text Blocks

You can add a quotation text by prepending > to each line:

> This is a quote

Lists

Use * or - to create lists:

* Item 1
* Item 2
  * Nested item

External

To link to an external website, use [link description](URL)

[Visit Google](https://google.com)

Internal

To create a link to a wiki page, use double brackets [[Page Name]]

Namespaces: DokuWiki organizes pages into namespaces (like folders) using colons:

[[namespace:page]]           - Link to a page in a namespace
[[namespace:subspace:page]]  - Link to a nested namespace
[[.:page]]                   - Link within current namespace
[[..:page]]                  - Link to parent namespace
[[:page]]                    - Link from root namespace