Table cells are not paragraphs

This commit is contained in:
Laurenz 2025-01-23 17:58:56 +01:00
parent aa67a0e745
commit bb4fb5c89b
2 changed files with 11 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 B

View File

@ -310,6 +310,17 @@
)
}
--- table-cell-par ---
// Ensure that table cells aren't considered paragraphs by default.
#show par: highlight
#table(
columns: 3,
[A],
block[B],
par[C],
)
--- grid-cell-in-table ---
// Error: 8-19 cannot use `grid.cell` as a table cell
// Hint: 8-19 use `table.cell` instead