My DokuWiki Cheat Sheet
Formatting
Bold**text**text
Italic//text//text
Underline1__text__text
Mono-spaced2' 'text' 'text
Sub-script<sub>text</sub>Xa
Super-script<sup>text</sup>Xa
Text Marked Deleted<del>text</del>text
New Line\\ or \\ at EOL 
Or any combination. For example
**__//' 'text' '//__**
Headlines
Headline 1====== Headline 1 ======Text
Headline 2===== Headline 2 =====Text
Headline 3==== Headline 3 ====Text
Headline 4=== Headline 4 ===Text
Headline 5== Headline 5 ==Text

1 two underscore characters
2 two single quote characters

Links
External Link[[http://google.com]]
External Link with Name[[http://google.com|Google Search]]
Internal Link[[pagename]]
Internal Link with Name[[pagename|My Home Page]]
Internal Link with Namespace[[namespace:pagename]]
Link Direct to Section[[pagename#section]]

Images
Real Size Image{{wiki:image.png}}
Resize to a Given Width{{wiki:image.png?50}}
Resize to a Given Width an Height{{wiki:image.png?200x50}}
External Image{{http://google.com/images/image.png?200x50}}
Image Aligned Left{{wiki:image.png }}
Image Aligned Right{{ wiki:image.png}}
Center Image{{ wiki:image.png }}
Image with Caption{{ wiki:image.png |caption }}

Unordered List
Indent each item 2 spaces and proceed with *
  *Tom
    *Reading
    *Computers
  *Judy
  *Jason
Ordered List
Indent each item 2 spaces and proceed with -
  -Tom
    -Reading
    -Computers
  -Judy
  -Jason

Tables
Rows start/end with "|" for normal rows; "^" for headers.
Define rowspan (vertically connected cells) with ":::".
Define colspan(empty cells) with double pipe "||".
^Heading 1   ^ Heading 2    ^ Heading 3   ^
|Row 1 Col 1 | Row 1 Col 2  | Row 1 Col 3 |
|Row 2 Col 1 | colspan (note double pipe) ||
|Row 3 Col 1 | Row 2 Col 2  | Row 2 Col 3 |
|:::         | Row 3 Col 2  | Row 3 Col 3 |
Align cells by adding at least two whitespaces at
the opposite end of text. Two spaces on the left
to align right. Two spaces on the right to align left.
Two spaces at both ends to center.
Vertical Headers
|          ^ Heading 1     ^ Heading 2    ^
^Heading 3 | Row 1 Col 2   | Row 1 Col 3  |
^Heading 4 | no colspan    |              |
^Heading 5 | Row 2 Col 2   | Row 2 Col 3  |

Basic Macros
No Table of Contents1~~NOTOC~~
No Webpage Caching2~~NOCACHE~~

1 If this macro is found on the page, no table of contents will be created
2 DokuWiki caches all output by default. Sometimes this might not be wanted
(eg. when the syntax above is used), adding this macro will force
DokuWiki to rerender a page on every call.