-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
quarto check [>] Checking tools....................OK [>] Checking LaTeX....................OK [>] Checking Chrome Headless....................OK [>] Checking basic markdown render....OK [>] Checking Python 3 installation....(None)
[>] Checking R installation...........OK [>] Checking Knitr engine render......OK |
Beta Was this translation helpful? Give feedback.
I don't know why you're mentioning
.typ
(your example hasformat: html
), but you're correct that the culprit is ultimately the column width specification being in pixels.Quarto uses Pandoc to parse and process HTML tables, so that libraries like GT can use leverage Quarto features: https://quarto.org/docs/authoring/tables.html#disabling-quarto-table-processing
Pandoc, unfortunately, doesn't understand how to specify column widths in pixels. As a result, we end up with a table lacking the specifier.
In HTML, you can choose to opt out of Quarto's HTML …