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 f7091f8 commit f2e6efaCopy full SHA for f2e6efa
src/resources/filters/normalize/extractquartodom.lua
@@ -17,7 +17,6 @@ function extract_quarto_dom()
17
end
18
end,
19
Span = function(span)
20
- print(span.attributes)
21
if span.attributes.qmd ~= nil or span.attributes["qmd-base64"] ~= nil then
22
local doc = process_quarto_markdown_input_element(span)
23
return doc.blocks[1].content
src/resources/filters/quarto-pre/tableattributes.lua
@@ -0,0 +1,13 @@
1
+-- tableattributes.lua
2
+-- Copyright (C) 2020-2023 Posit Software, PBC
3
+
4
+function table_classes_and_attributes()
5
+ return {
6
+ Table = function(table)
7
+ local caption, attr = parseCaption(table)
8
+ -- make the appropriate forwards to the table element itself
9
+ table.caption = createTableCaption(caption, attr)
10
+ return table
11
+ end
12
+ }
13
+end
0 commit comments