Hello,
I am formatting a table from the following input json:
[
[
"Date",
"Tran Type",
"Tran ID",
"Withdrawals",
"Deposits",
"Another Head",
"One more head",
"Last one"
],
[
"01/05/2024",
"TFR",
"S81420904S81420",
"S81420904",
"S81420904",
"S81420904",
"700.00",
""
],
[
"01/05/2024",
"TFR",
"S84554541",
"S84554541",
"S84554541",
"S84554541",
"",
"1.01"
]
]
Using the following typst script:
#let txn = json("data2.json")
#table(
columns: 8,
..txn.flatten()
)
And getting the following output:
As it can be seen, the Tran ID
spills over in to the next cell. I understand that there is no place to break that text in the cell, but if it’s possible to just wrap along the cell boundary and put the remaining text inthe next line, it will look much better.