@table tag
This tag starts a new table which must be ended by an @end table tag. All elements between these tags are considered as table cells. The @item tag must be used to group cell content.
Syntax
@table <columns_count> [{<caption>}]
...
@end tableExample
This mkdoc source:
@table 2
@item 1st column header @item 2nd column header
@c--------------------------------------------------
@item 1st column 1st row @item 2nd column 1st row
@item 1st column 2nd row
@item 2nd column 2nd row
@end tableproduces the following table:
| 1st column header | 2nd column header |
|---|---|
| 1st column 1st row | 2nd column 1st row |
| 1st column 2nd row | 2nd column 2nd row |