Table

Static tables do not have any dynamic elements and are marked up manually.

Markdown table
  • Add an empty line before inserting the table.
  • To format your table, use the following markup:
Markup Result
| Header 1 | Header 2 | Header 3 |
| --- | --- | --- |
| cell11 | cell12 | cell13 |
| cell21 | cell22 | cell23 |
Note. You can use text formatting inside table cells.
Table in CSV format

You can display CSV data as a table by using markup:

Markup Result
%%(csv delimiter=; head=1)
Header 1;Header 2;Header 3
cell11;cell12;crll13
cell21;cell22;cell23
%%

Markup parameters:

  • delimiter — A field separator used in CSV tables.

  • head — If set to “1”, the first row of the table becomes a heading.

Note. CSV tables don't support any other text markup.