mirror of
https://github.com/typst/typst
synced 2025-05-15 01:25:28 +08:00
9 lines
152 B
Typst
9 lines
152 B
Typst
// Test that a table row isn't wrongly treated like a gutter row.
|
|
|
|
---
|
|
#set page(height: 70pt)
|
|
#table(
|
|
rows: 16pt,
|
|
..range(6).map(str).flatten(),
|
|
)
|