User Tools


Syntax Cheatsheet

See DokuWiki wiki:syntax for long explanation.

Headline

====== Level 1 ======
===== Level 2 =====
==== Level 3 ====
=== Level 4 ===
== Level 5 ==

Multi-column text

<WRAP col2> // col3 ... col5
text

more text (on modern browsers)
</WRAP>

(requires Wrap plugin)


Columns

C++ "Tony tables"

C++98:

 before

C++17:

 after

Two or more indepedent columns, width: half third quarters twothirds

<WRAP group>
 <WRAP half column>
 C++98:
   before
 </WRAP>
 <WRAP half column>
 C++17:
   after
 </WRAP>
</WRAP>

Formatting

italic bold underlined deleted
monospaced subscript superscript
That is ⇒ not <=> parsed ⇐ text
← → ⇐ ⇒ ↔ ⇔ « » – — © ® ™
:-) :-( :?: :!: FIXME DELETEME
„deutsch“ “english”

//italic// **bold** __underlined__  <del>deleted</del>
''monospaced'' <sub>subscript</sub> <sup>superscript</sup>
That is => %%not <=> parsed%% <= text
<- -> <= => <-> <=> << >> -- --- (c) (r) (tm)  
:-)   :-(  :?:  :!:  FIXME  DELETEME
„deutsch“ “english”

ruler and new line
without paragraph (1)

quote
requote
text in file
empty.cpp
int main() {}
-----
ruler and new line\\ without paragraph 
((This is a footnote: new line also in table cell.))
> quote
>> requote
<file>text in file</file>
<code cpp empty.cpp>
int main() {}
</code>

www.google.com Google
Interwiki Google Search
Image link: image in media folder
Wikipedia DMC
Speedrun.com Devil May Cry Series

www.google.com [[http://www.google.com/|Google]] \\
[[doku>Interwiki]] [[google>Newton|Google Search]] \\
Image link: {{wiki:dokuwiki-128.png?16|image in media folder}} \\
Wikipedia [[wp>Devil_May_Cry|DMC]] \\
Speedrun.com [[src>series/devil_may_cry|Devil May Cry Series]]

HTML Tables

Heading 1 Heading 2 Heading 3
Row 1 Col 1 Row 1 Col 2 Row 1 Col 3
Row 2 Col 1 Row 2 Col 2 Row 2 Col 3

 <table>
  <tr>
    <th>Heading 1</th>
    <th>Heading 2</th>
    <th>Heading 3</th>
  </tr>
  <tr>
    <td>Row 1 Col 1</td>
    <td>Row 1 Col 2</td>
    <td>Row 1 Col 3</td>
  </tr>
  <tr>
    <td>Row 2 Col 1</td>
    <td>Row 2 Col 2</td>
    <td>Row 2 Col 3</td>
  </tr>
</table> 

Lists

  • Item 1
  • Item 2
    • Item 2.a
  1. Number Item A
  2. Number Item B
    1. Number Item B.A
<WRAP>
<WRAP col2>
<WRAP indent>
  * Item 1
  * Item 2
    * Item 2.a
</WRAP>
<WRAP indent>
  - Number Item A
  - Number Item B
    - Number Item B.A
</WRAP>




1) This is a footnote: new line also in table cell.