This is an old revision of the document!
part of the GtC documentation
MediaWiki and DokuWiki
If you are familiar with editing any MediaWiki wiki, this table will help you find the basic equivalents in DokuWiki syntax.
| Syntax Examples | MediaWiki | DokuWiki | result |
|---|---|---|---|
| Internal Link | [[a link]] [[a link|with title]] | [[start]] [[ints:start]] [[ints:start|a long list]] | start ints a long list |
| External Link | [http://example.org With a title] | [[http://example.com]] [[http://example.com|With a Title]] |
|
| Headlines | = Page title (h1) = == Section (h2) == === Subsection (h3) === ==== Sub-subsection (h4) ==== | ====== Level 1 (h1) ====== ===== Level 2 (h2) ===== ==== Level 3 (h3) ==== === Level 4 (h4) === == Level 5 (h5) == | See page section headings |
| Bold Format | '''bold''' | **bold** | bold |
| Italics Format | ''italic'' | //italics// | italics |
| Bold italics | '''''bolditalic''''' | //**bolditalic**// | bolditalic |
| Underline Format | <u>underlined</u> | __underlined__ | underlined |
| Monospace Format | <tt>monospace</tt> | ''monospace'' | monospace |
| Strikethrough Format | <s>strikethrough</s> | <del>strikethrough</del> | |
| Superscript Format | A<sup>superscript</sup> | A<sup>superscript</sup> | Asuperscript |
| Subscript Format | A<sub>subscript</sub> | A<sub>subscript</sub> | Asubscript |
| (the above are covered in basic text formatting | |||
| Images | [[Image:wiki.png]] | {{local.jpg}}, {{http://foo.bar/baz.jpg}} | |
| Bulleted Lists | * Bulleted point ** sub-point * another bulleted point | * Markdown lists work on our wiki * indented, not double `**`, for sub-item * main list again | See lists |
| Numbered Lists | # Item 1 ## Item 1.2 # Item 2 | 1. again, Markdown works here a. indenting creates sub-numbering 3. this will come out as '2' | See lists |
| No formatting | <nowiki>''**#-''</nowiki> | <nowiki>''**#-''</nowiki> | ''**#-'' |
| Horizontal Rule | ---- | ---- (look, below) | |