= Top-level heading (1)=======

aaaaa

== This a test for creole 0.1 (2)
=== This is a Subheading (3)
==== Subsub (4)=
===== Subsubsub (5)

//aaaaa
bbbbb

----he//he//1

---- hehe2

----

The ending equal signs should not be displayed:

= Top-level heading (1) =
== This a test for creole 0.1 (2) ==
=== This is a Subheading (3) ===
==== Subsub (4) ====
===== Subsubsub (5) =====


You can make things **bold** or //italic// or **//both//**.

Character formatting extends across line breaks: **bold,
this is still bold. This line deliberately does not end in star-star.

Not bold. Character formatting does not cross paragraph boundaries.

You can use [[InternalLinks]] or [[http://www.wikicreole.org|external Links]],
give the link a [[InternalLinks| different]] name.

Here's another sentence: This Wisdom is taken from [[Ward Cunninghams]]
[[http://www.c2.com/doc/wikisym/WikiSym2006.pdf|Presentation at the Wikisym 06]].

Here's a external link without a description: [[http://www.wikicreole.org]]

Free links without braces should be rendered as well, like http://www.wikicreole.org/. 

Note: the implementation should not render foo://bar as italic! It's not enough to
protect http://bar from being rendered as italic, because you can have much more
protocols, for example jdbc://bar.

You can use this to draw a line to separate the page:
----

You can format an address by simply forcing linebreaks:

My contact dates:\\
Pone: xyz\\
Fax: +45\\
Mobile: abc

You can use lists, start it at the first column for now, please...

unnumbered lists are like
* ite//m a
* item b
* **bold item c**

or you can number them
# [[item a]]
# item b
# // italic item c //

up to five levels
* 1
** 2
*** 3
**** 4
***** 5

* You can have
multiline list items
* this is a second multiline
list item

You can use nowiki syntax if you would like do stuff like this:

{{{
Guitar Chord C:

||---|---|---|
||-0-|---|---|
||---|-0-|---|
||---|---|-0-|
||---|---|---|
}}}

Note: if you look at the source code of the above, you see the escape char (tilde, ~ )
being used to escape the closing triple curly braces. This is to do nesting because
all this text is enclosed in nowiki markup.

You can also use it inline nowiki {{{ in a sentence }}} like this.

Tables are done like this:

||header col1||header col2
|col1|col2
|you         |can         
|also        |align it.   
!!! Escapes 
Normal Link: http://wikicreole.org/ - now same link, but escaped: ~http://wikicreole.org/ 

Normal asterisks: ~**not bold~**

a tilde alone: ~

a tilde escapes itself: ~~xxx


----