2025-01-23 12:08:48 +00:00

33 lines
380 B
XML

--- basic-table html ---
#table(
columns: 3,
rows: 3,
table.header(
[The],
[first],
[and],
[the],
[second],
[row],
table.hline(stroke: red)
),
table.cell(x: 1, rowspan: 2)[Baz],
[Foo],
[Bar],
[1],
// Baz spans into the next cell
[2],
table.cell(colspan: 2)[3],
[4],
table.footer(
[The],
[last],
[row],
),
)