This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
wiki_playground [2012/11/30 13:02] prokop created |
wiki_playground [2012/11/30 13:15] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Level 1 Headline ====== | ====== Level 1 Headline ====== | ||
| - | dfgdfgbdnfgbbdfgb fgbg hg jhg hfg j gjh gjhg gg hh g gj gj | + | text text text text text text text text text text text text text text text text text text |
| ===== Level 2 Headline ===== | ===== Level 2 Headline ===== | ||
| - | dfgdfgbdnfgbbdfgb fgbg hg jhg hfg j gjh gjhg gg hh g gj gj | + | text text text text text text text text text text text text text text text text text text |
| ==== Level 3 Headline ==== | ==== Level 3 Headline ==== | ||
| - | dfgdfgbdnfgbbdfgb fgbg hg jhg hfg j gjh gjhg gg hh g gj gj | + | text text text text text text text text text text text text text text text text text text |
| === Level 4 Headline === | === Level 4 Headline === | ||
| - | dfgdfgbdnfgbbdfgb fgbg hg jhg hfg j gjh gjhg gg hh g gj gj | + | text text text text text text text text text text text text text text text text text text |
| == Level 5 Headline == | == Level 5 Headline == | ||
| - | dfgdfgbdnfgbbdfgb fgbg hg jhg hfg j gjh gjhg gg hh g gj gj | + | text text text text text text text text text text text text text text text text text text |
| ---- | ---- | ||
| + | - Ordered List Item | ||
| + | - Ordered List Item | ||
| + | - Ordered List Item | ||
| + | * Unordered List Item | ||
| + | * Unordered List Item | ||
| + | * Unordered List Item | ||
| + | |||
| + | * This is a list | ||
| + | * The second item | ||
| + | * You may have different levels | ||
| + | * Another item | ||
| + | |||
| + | - The same list but ordered | ||
| + | - Another item | ||
| + | - Just use indention for deeper levels | ||
| + | - That's it | ||
| + | |||
| + | ''Code Text Code Text Code Text Code Text Code Text Code Text Code Text Code Text'' | ||
| + | |||
| + | **Bold Text Bold Text Bold Text Bold Text Bold Text** | ||
| + | |||
| + | //Italic Text Italic Text Italic Text Italic Text Italic Text Italic Text// | ||
| + | |||
| + | __Underlined Text Underlined Text Underlined Text Underlined Text Underlined Text__ | ||
| + | |||
| + | <del>Strike-through Text Strike-through Text Strike-through Text Strike-through Text</del> | ||
| + | |||
| + | DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. | ||
| + | Of course you can **__//''combine''//__** all these. | ||
| + | |||
| + | You can use <sub>subscript</sub> and <sup>superscript</sup>, too. | ||
| + | |||
| + | You can mark something as <del>deleted</del> as well. | ||
| + | |||
| + | You can add footnotes ((This is a footnote)) by using double parentheses. | ||
| + | |||
| + | <code> | ||
| + | This is preformatted code all spaces are preserved: like <-this | ||
| + | </code> | ||
| + | |||
| + | <file> | ||
| + | This is pretty much the same, but you could use it to show that you quoted a file. | ||
| + | </file> | ||
| + | |||
| + | |||
| + | <code java> | ||
| + | /** | ||
| + | * The HelloWorldApp class implements an application that | ||
| + | * simply displays "Hello World!" to the standard output. | ||
| + | */ | ||
| + | class HelloWorldApp { | ||
| + | public static void main(String[] args) { | ||
| + | System.out.println("Hello World!"); //Display the string. | ||
| + | } | ||
| + | } | ||
| + | </code> | ||