====== level 1 ======

level 1 text

===== level 2 =====

level 2 text

==== level 3 ====

level 3 text 

=== Headline Level 4 ===

level 4 text

===== Formatting Syntax =====

[[:blog/hata/pata/pikus-latino-uno|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|playground]]
page. The simpler markup is easily accessible via [[doku>wiki:quickbuttons|quickbuttons]], too.

For example this is a link to Wikipedia's page about Wikis: [[wp>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: [[http://www.google.com|This Link points to google]]. Email
addresses like this : <andi@splitbrain.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.

===== Basic text formatting =====

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 <sub>subscript</sub> and <sup>superscript</sup>, too.

You can mark something as <del>deleted</del> as well.

Simple imagelink [[http://www.php.net|{{http://wiki.splitbrain.org/_media/wiki:dokuwiki-128.png}}]]

You can add footnotes ((This is a footnote [[http://www.seznam.cz|seznam.cz link]])) by using double parentheses.
You can add another footnote ((This is another footnote)). And njak esk text s hky a rkami lababa .

And another paragraph with some short text.

===== Images =====

Of course, you can add a title (displayed as a tooltip by most browsers) and
alignment.

{{ http://de3.php.net/images/php.gif?200x50 |This is the caption for centered image}}
{{http://de3.php.net/images/php.gif |right alignment centered image}}
{{ http://de3.php.net/images/php.gif|left alignment image}}


===== Lists =====
* 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


===== Smileys and Acronyms =====
:-(  jkdjas :-) and some ancronym ASCII

===== Typography =====
DokuWiki can convert simple text characters to their typographically correct 
entities.

-> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r)
"He thought 'It's a man's world'..."

===== Quoting =====

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!

===== Tables =====

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        |

===== Embedding HTML =====

You can embed raw HTML or PHP code into your documents by using the html tags like this:

<html>
This is some <span style="color:red;font-size:150%;">inline HTML</span>
</html> 

===== Syntax Highlighting =====

<code php>
//==============================================================================
/**
 * 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();
 }
}
</code>

===== Unformatted =====
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.
