# 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 - **Bold**: Wrap text in `**double asterisks**` or `__double underscores__` - *Italic*: Use `*single asterisks*` or `_single underscores_` - __Underlined__: Use `__double lower bar__` - `monospaced` : use \` backticks \` ### 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 ``` ### Links #### 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 ```