A matrix of rows and columns

table

The table element groups together a set of rows, which in turn groups together a set of columns forming a matrix of cells for holding text, numbers, images, and more.

The table element uses implied semantax allowing the rows and data to be specified without explictly stating the semantax.

Furthermore, the data elements may be specified on their own line, or within term-marks.

Examples

table {
tr {
td AR
td Argentina
}
tr {
td BE
td Belgium
}
tr {
td CA
td Canada
}
}
Table using explicit semantax

table {
{
AR
Argentina
}
{
BE
Belgium
}
{
CA
Canada
}
}
Table using implied semantax

table {
<<AR>> <<Argentina>>
<<BE>> <<Belgium>>
<<CA>> <<Canada>>
}
Table using termmarks
0

semantax > row-column > tableA matrix of rows and columns

🔗 🔎