level 1 text
level 2 text
level 3 text
level 4 text
internal wiki link supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the Edit this page button at the top or bottom of the page. If you want to try something, just use the playground page. The simpler markup is easily accessible via quickbuttons, too.
For example this is a link to Wikipedia's page about Wikis: Wiki nice.
DokuWiki supports multiple ways of creating links. External links are recognized automagically: http://www.google.com or simply www.google.com - You can set Linknames, too: This Link points to google. Email addresses like this : andi [at] splitbrain [dot] org are recognized, too.
This is some text with some linebreaks
Note that the two backslashes are only recognized at the end of a line
or followed by
a whitespace \\this happens without it.
DokuWiki supports bold, italic, underlined and monospaced
texts. Of course you can combine
all these.
DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. Of course you can **__//''combine''//__** all these.
You can use subscript and superscript, too.
You can mark something as deleted as well.
You can add footnotes 1) by using double parentheses. You can add another footnote 2). And nějaký český text s háčky a čárkami žlababa ýřščů.
And another paragraph with some short text.
* This is a list
jkdjas
and some ancronym ASCII
DokuWiki can convert simple text characters to their typographically correct entities.
→ ← ↔ ⇒ ⇐ ⇔ » « – — 640x480 © ™ ® "He thought 'It's a man's world'…"
Some times you want to mark some text to show it's a reply or comment. You can use the following syntax:
I think we should do it
No we shouldn't
Well, I say we should
Really?
Yes!
Then lets do it!
Table rows have to start and end with a | for normal rows or a ^ for headers.
Heading 1 | Heading 2 | Heading 3 |
---|---|---|
Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
Row 2 Col 1 | some colspan (note the double pipe) | |
Row 3 Col 1 | Row 2 Col 2 | Row 2 Col 3 |
To connect cells horizontally, just make the next cell completely empty as shown above. Be sure to have always the same amount of cell separators!
Vertical tableheaders are possible, too.
Heading 1 | Heading 2 | |
---|---|---|
Heading 3 | Row 1 Col 2 | Row 1 Col 3 |
Heading 4 | no colspan this time | |
Heading 5 | Row 2 Col 2 | Row 2 Col 3 |
You can embed raw HTML or PHP code into your documents by using the html tags like this:
This is some inline HTML
//============================================================================== /** * Seek to the defined element * * Seek to the element in inner array, the element must be equivalent with * $seekVar parametr. Elements in the inner array and the parameter must implement interface * {@link IComparableEqual} for an equivalency check. */ public function seek($seekVar) { //echo "seeking to $seekVar->Name<br>"; if (!$seekVar instanceof IComparableEqual) throw new Exception("Seeked variable must implement IComparableEqual"); $this->rewind(); while ($this->valid()) { $val = $this->current(); //echo "testing $val->Name<br>\n"; if (!$val instanceof IComparableEqual) { throw new Exception("inner array values must implement IComparableEqual"); } //value found if ($val->isEqual($seekVar)) { //echo "$val->Name found<br>\n"; return; } $this->next(); } }
You can include non-parsed blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags code
.
To let the parser ignore an area completely (ie. do no formatting on it), enclose the area either with nowiki tags or even simpler, with double percent signs. __autoloading is was written as
__%%__autoloading%%__
See ya.