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 a96ca2c commit a7e6ef7Copy full SHA for a7e6ef7
src/resources/extensions/quarto/confluence/publish.lua
@@ -42,10 +42,12 @@ function Writer (doc, opts)
42
codeBlock.classes[1] or '')
43
return pandoc.RawBlock('html', renderString)
44
end,
45
- Table = function (tbl)
46
- local caption = tbl.caption.long
47
- tbl.caption = {}
48
- return {tbl} .. caption
+ Table = function (table)
+ -- Grid tables add a width style that widens the table, remove it
+ table.attributes.style = ""
+ local head = table.head
49
+ local caption = table.caption.long
50
+ return { table } .. caption
51
end
52
}
53
0 commit comments