![]() |
| ||||||||||||||||||||||
Navigation |
Synopsis Mark up for a table.
Syntax
| Header1 | Header2 | ... | |---------|---------| ... | | Entry1 | Entry2 | ... |
Description Each line in a table description starts and ends with a
| character which is also used to separate columns.
A table description consists of:
Examples
Example 1| A | B | C | |---|-----|---| | 12| 123 | 2 |gives:
Example 2| A | B | C | |---|:----|---| | 12| 123 | 2 |gives (with column B left-aligned):
Example 3| A | B | C | |---|-----:|---| | 12| 123 | 2 |gives (with column B right-aligned):
Example 4| Operator | Description | |:-----------|:------------| | `A | B` | Or operator |gives (note the | character in one table entry):
![]() |