We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4471ea2 commit d9e8463Copy full SHA for d9e8463
src/resources/filters/layout/columns.lua
@@ -17,12 +17,14 @@ function columns()
17
Span = function(el)
18
-- a span that should be placed in the margin
19
if _quarto.format.isLatexOutput() and hasMarginColumn(el) then
20
+ noteHasColumns()
21
tprepend(el.content, {latexBeginSidenote(false)})
22
tappend(el.content, {latexEndSidenote(el, false)})
23
return el
24
else
25
-- convert the aside class to a column-margin class
26
if el.attr.classes and tcontains(el.attr.classes, 'aside') then
27
28
el.attr.classes = el.attr.classes:filter(function(attr)
29
return attr ~= aside
30
end)
0 commit comments