diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-06-12 17:20:49 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-06-12 17:20:54 +0200 |
| commit | 6720d8c3017af787b8dce42e9fa15468f281629d (patch) | |
| tree | b1bf66865e304251e9760e11912fded8b6f2e16d /tests/typ | |
| parent | d3b4d7da9a801dac3af6a3cf52eb55af83adc5f5 (diff) | |
Fix bug with missing table row
Fixes #1388
Diffstat (limited to 'tests/typ')
| -rw-r--r-- | tests/typ/bugs/table-row-missing.typ | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/typ/bugs/table-row-missing.typ b/tests/typ/bugs/table-row-missing.typ new file mode 100644 index 00000000..d72305ba --- /dev/null +++ b/tests/typ/bugs/table-row-missing.typ @@ -0,0 +1,8 @@ +// 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(), +) |
