Dokuwiki Tutorial

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

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

# Heading 1
## Heading 2
### Heading 3
  • Bold: Wrap text in **double asterisks** or __double underscores__
  • Italic: Use *single asterisks* or _single underscores_
  • Underlined: Use __double lower bar__
  • monospaced : use ` backticks `

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

> This is a quote

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
  • Last modified: 2025/12/08 12:15
  • by miguel