Tables
Note
For information on how to work with tables in the new editor, see Dynamic table.
Old editor
Simple tables are static tables that are created manually using markup elements.
Wiki also supports table markup using standard HTML tags.
Tables in Wiki format
Tables in Markdown format
Tables in CSV format
-
To create a table, use the markup:
#| || Heading 1 | Heading 2| Heading 3 || || cell 11 | cell 12 | cell 13 || || cell 21 | cell 22 | cell 23 || |#
See the result
-
To format a table at full page width without borders, use the markup:
#|| || cell 11 | cell 12 | cell 13|| || cell 21 | cell 22 | cell 23|| ||#
See the result
Note
You can use text styling elements in table cells.
Add an empty line before the table.
To create a table, use the markup:
| Heading 1 | Heading 2 | Heading 3 |
| --- | --- | --- |
| cell 11 | cell 12 | cell 13 |
| cell 21 | cell 22 | cell 23 |
See the result
Note
You can use text styling elements in table cells.
To display CSV data as a table, use the markup:
%%(csv delimiter=; head=1)
Heading 1;Heading 2;Heading 3
cell 11;cell 12;cell 13
cell 21;cell 22;cell 23
%%
See the result
Markup parameters:
-
delimiter
: Field separator used in CSV tables. -
head
: If set to 1, the first row of the table becomes a heading.
Note
You cannot use text formatting elements in CSV tables.
Was the article helpful?
Previous
Next