Glasnost

help

 

SPIP Syntax: Simple Tables

Each row of a table is on a single line, and the rows of a table are on consecutive lines. Columns are marked by | characters.

Spacing is not important, but each line must begin with |. It is good practice however, to align | characters as it is more readable.

When the text of all the cells in the first row are made bold, these cells are html table header cells (<th />) instead of regular html table cells (<td />).

Example

| {{a}} | {{b}} | {{c}} |
|  dd   |  ee   |  ff   |
|ggg|hhh|iii|
a b c
dd ee ff
ggg hhh iii
up