Skip to content

Commit

Permalink
Merge pull request #9080 from quarto-dev/bugfix/9076
Browse files Browse the repository at this point in the history
html,layout,columns - fix regression in executable code cell results with multiple columns and layout
  • Loading branch information
cscheid authored Mar 14, 2024
2 parents 751baef + 864bc5b commit 70c23b6
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/format/html/format-html-bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,10 @@ function processColumnElements(
// Add the grid system. Children of the grid system
// are placed into the body-content column by default
// (CSS implements this)
if (!el.classList.contains("page-columns")) {
if (
!el.classList.contains("quarto-layout-row") &&
!el.classList.contains("page-columns")
) {
el.classList.add("page-columns");
}

Expand Down
Loading

0 comments on commit 70c23b6

Please sign in to comment.