#How to spread content to cells in table/grid?

13 messages · Page 1 of 1 (latest)

cold kiln
#

?r #table(columns:5, [1], ..([ ]*4) , [2], )

vast solsticeBOT
cold kiln
#

How to spread content to cells in table/grid?

#

?r #table(columns:5, [1], ([ ]*4).flatten(), [2], )

vast solsticeBOT
cold kiln
#

to avoid to write this:

#

?r #table(columns:5, [1], [],[],[],[], [2], )

rapid bobcat
#

?r


#table(columns:5,
[1], ..([ ],)*4,
[2],
)
cold kiln
#

ohhh..

#

*fp

#

@rapid bobcat thanks