PgBiel/typst-tablex

Add support for array of per-column values for `align:` and `fill:`

PgBiel opened this issue · 1 comments

PgBiel commented

For parity with the new syntax in native typst tables since v0.4.0.

E.g.
#table(align: (left, center, right), fill: (red, blue, green)) would align columns 1st, 2nd and 3rd to the left, center and right respectively, and fill them with red, blue and green respectively.

PgBiel commented

Implemented in 659456b and f78934c.