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
|
// add .table class to pandoc tables |
|
const tableHeaders = doc.querySelectorAll("tbody > tr:first-child.odd"); |
CSS will need to be updated to
thead tr { /* targets previous header class */ }
tbody tr:nth-child(2n) { /* targets previous even class*/ }
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
quarto-cli/src/format/html/format-html-bootstrap.ts
Lines 453 to 454 in 8146046
CSS will need to be updated to