quarto-dev / quarto-cli

Open-source scientific and technical publishing system built on Pandoc.
https://quarto.org
Other
3.77k stars 309 forks source link

[pandoc 3.2.1] Check for change on table as odd / even / header classes have been removed #10607

Open cderv opened 3 weeks ago

cderv commented 3 weeks ago

Change happened at

It caused issues with R Markdown

It will be important to check this is not impact too much Quarto. We leverages the class in some places like https://github.com/quarto-dev/quarto-cli/blob/814604696f1a36c4351245100f72c7fb75fba5eb/src/format/html/format-html-bootstrap.ts#L453-L454

CSS will need to be updated to

thead tr { /* targets previous header class */ }
tbody tr:nth-child(2n) { /* targets previous even class*/ }
cscheid commented 3 weeks ago

Putting this back to v1.6 in case we merge the new Pandoc by then.