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 5f0bb3b commit 569135aCopy full SHA for 569135a
src/resources/filters/quarto-pre/code-annotation.lua
@@ -529,10 +529,10 @@ function code_annotations()
529
local dl
530
if _quarto.format.isAsciiDocOutput() then
531
local formatted = pandoc.List()
532
- for _i,v in ipairs(items) do
+ for _,v in ipairs(items) do
533
local annotationMarker = v[1] .. ' '
534
local definition = v[2]
535
- tprepend(definition.content, {annotationMarker})
+ tprepend(definition.content, {pandoc.RawInline('asciidoc', annotationMarker)})
536
formatted:insert(definition)
537
end
538
dl = pandoc.Div(formatted)
0 commit comments