Tables in the old editor
For information on how to work with tables in the new editor, see Dynamic table.
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
-
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 || |# -
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|| ||#
Note
You can use text styling elements in table cells.
Add an empty line before the table.
To create a table, use the markup:
| Header 1 | Header 2 | Header 3 |
| --- | --- | --- |
| cell 11 | cell 12 | cell 13 |
| cell 21 | cell 22 | cell 23 |
Note
You can use text styling elements in table cells.
- Tables in CSV format
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
%%
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