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
**double asterisks** or __double underscores__*single asterisks* or _single underscores___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
To link to an external website, use [link description](URL)
[Visit Google](https://google.com)
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