Skip to content

Commit

Permalink
Apply column filters to the cell-output-display div itself
Browse files Browse the repository at this point in the history
This will place the entirety of the output display in the margin

This should fix:
#6961

this does introduce an `outer par` bug in PDF output, which I will investigate separately.
  • Loading branch information
dragonstyle committed Sep 30, 2023
1 parent 6338dd3 commit d16fe44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/filters/layout/columns-preprocess.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function resolveColumnClassesForCodeCell(el)
local custom_classes = float_classes[ref_type]
local custom_caption_classes = float_caption_classes[ref_type]
-- applyClasses(colClasses, captionClasses, containerEl, colEl, captionEl, scope)
applyClasses(custom_classes, custom_caption_classes, el, custom, custom, ref_type)
applyClasses(custom_classes, custom_caption_classes, el, childEl, custom, ref_type)
else
local figure = discoverFigure(figOrTableEl, false)
if figure ~= nil then
Expand Down

0 comments on commit d16fe44

Please sign in to comment.