diff options
| author | PgBiel <9021226+PgBiel@users.noreply.github.com> | 2025-02-23 08:26:14 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-23 11:26:14 +0000 |
| commit | 240f238eee4d6dfce7e3c4cabb9315ad052ca230 (patch) | |
| tree | 231771ef399964f28b267b2b0832bad274e0f5c9 /tests/suite | |
| parent | d199546f9fe92b2d380dc337298fdca3e6fca8c8 (diff) | |
Fix HTML export of table with gutter (#5920)
Diffstat (limited to 'tests/suite')
| -rw-r--r-- | tests/suite/layout/grid/html.typ | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/suite/layout/grid/html.typ b/tests/suite/layout/grid/html.typ index 2a7dfc2c..10345cb0 100644 --- a/tests/suite/layout/grid/html.typ +++ b/tests/suite/layout/grid/html.typ @@ -30,3 +30,30 @@ [row], ), ) + +--- col-gutter-table html --- +#table( + columns: 3, + column-gutter: 3pt, + [a], [b], [c], + [d], [e], [f], + [g], [h], [i] +) + +--- row-gutter-table html --- +#table( + columns: 3, + row-gutter: 3pt, + [a], [b], [c], + [d], [e], [f], + [g], [h], [i] +) + +--- col-row-gutter-table html --- +#table( + columns: 3, + gutter: 3pt, + [a], [b], [c], + [d], [e], [f], + [g], [h], [i] +) |
