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 52224df commit d55fb94Copy full SHA for d55fb94
src/resources/extensions/quarto/confluence/publish.lua
@@ -19,19 +19,8 @@ function dump(object, label)
19
end
20
21
function Writer (doc, opts)
22
- dump(doc, 'doc')
23
local filter = {
24
Image = function (img)
25
- dump('Image')
26
- dump(img, 'img')
27
- dump(img.c, 'img.c')
28
- dump(img.attributes, 'img.attributes')
29
- dump(img.src, 'img.src')
30
- dump(img.title, 'img.title')
31
- dump(img.caption, 'img.caption')
32
- dump(img.caption[1] or '', 'img.caption[1]')
33
- dump(img.attr, 'img.attr')
34
-
35
local renderString = confluence.CaptionedImageConfluence(
36
img.src, img.title, 'Elephant', img.attr)
37
dump(renderString, 'renderString')
0 commit comments