Not discussed at WikiSym 06, please comment on the [Talk.Tables] page.  Also see the [list of table markups].

Creole only supports very basic table syntax, with no alignment. It is meant to create simple table like phone lists or top 10 lists. It only contains a notion for creating headings and forced line breaks.

!!Since [Creole 0.3]

Simple table
{{{
|Cell 1.1       |Cell 1.2
|Cell 2.1       |Cell 2.2
}}}


!!Up for discussion for [Creole 0.4]


Table with heading
{{{
||Heading Col 1 ||Heading Col 2
|Cell 1.1       |Cell 1.2
|Cell 2.1       |Cell 2.2
}}}

Table with forced line break using the {{{\\}}} syntax
{{{
||Heading Col 1                        || Heading Col 2
|Cell 1.1 line one \\ Cell 1.1 ine two | Cell 1.2
}}}

Table rows can end with | too, but they also can be omitted
{{{
|Cell 1.1 | Cell 1.2 |
|Cell 2.1 | Cell 2.2 |
}}}