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.
2 parents 20e6279 + 259a6d5 commit 1d3392fCopy full SHA for 1d3392f
src/resources/extensions/quarto/confluence/publish.lua
@@ -91,8 +91,13 @@ function Writer (doc, opts)
91
block = injectAnchor(block)
92
return block
93
end,
94
- RawBlock = function ()
95
- -- Raw blocks inclding arbirtary HTML like JavaScript is not supported in CSF
+ RawBlock = function (rawBlock)
+ -- We just "pass-through" raw blocks of type "confluence"
96
+ if(rawBlock.format == 'confluence') then
97
+ return pandoc.RawBlock('html', rawBlock.text)
98
+ end
99
+
100
+ -- Raw blocks inclding arbirtary HTML like JavaScript are not supported in CSF
101
return ""
102
103
RawInline = function (inline)
0 commit comments