====== Syntax ======

Examples of the wiki syntax as used by zim.

Most of this syntax is inspired by the [[http://wiki.splitbrain.org/wiki:dokuwiki|dokuwiki]] syntax, but with some modifications.

===== Headings =====

====== Head 1 ======

===== Head 2 =====

==== Head 3 ====

=== Head4 ===

== Head 5 ==

	====== Head 1 ======

	===== head 2 =====

	==== head 3 ====

	=== head 4 ===

	== head 5 ==


===== Links =====

Link to another page like this:

	[[foo]]  links to page in the current namespace or parents
	[[:foo]] links to page in the root namespace
	[[.foo]] links to page in a subnamespace

	[[foo|bar]] links to "foo" but display "bar"

External links like http://nongnu.org are also supported

===== Lists =====

* item 1
* item 2
* item 3
	* item 3 A

	* item 1
	* item 2
	* item 3
		* item 3a

TODO: numbered lists

===== Markup =====
**bold**, //italic// and __underline__ and ''verbatim''

	**bold**, //italic// and __underline__ and ''verbatim''

and also ~~strike through~~	

	and also ~~strike through~~

Using verbatim also prevents any further parsing of the content. Indented blocks are also rendered verbatim:

	Sing, O goddess, the rage of
	Achilles son of Peleus, that
	brought countless ills upon
	the Achaeans.

This can be used for code examples etc.

===== Images =====

To include images use: 

	{{./foobar.png}}

The filename for an image can either be absolute or relative. If relative it is looked for in the same directory as where the text source of the current page is. 
