PgBiel/typst-tablex

Is there a limit of three nested tables?

wlupton opened this issue · 2 comments

Is this expected? When the problem occurs, I believe that it can affect other tables in the document.

Screenshot 2023-08-09 at 14 58 43
Triple-nested tables are fine.

#tablex(
  tablex(
    tablex(
      lorem(10) 
    )
  )
)

Quadruple-nested tables don't seem to wrap correctly.

#tablex(
  tablex(
    tablex(
      tablex(
        lorem(20) 
      )
    )
  )
)
PgBiel commented

I wouldn't say this is expected, but nested tables seem to be kinda glitchy in general atm. This might improve in the upcoming v0.1.0, not sure to which extent though. Hopefully this is figured out sooner or later. Thanks for the report!

PgBiel commented

Hi, I've pushed a fix to main with f00b91c. Make sure to test and give feedback if you can (it seems to be working fine now on my own tests though). Thanks!