Skip to content

Commit f2e6efa

Browse files
committed
remove print
1 parent f7091f8 commit f2e6efa

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

src/resources/filters/normalize/extractquartodom.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ function extract_quarto_dom()
1717
end
1818
end,
1919
Span = function(span)
20-
print(span.attributes)
2120
if span.attributes.qmd ~= nil or span.attributes["qmd-base64"] ~= nil then
2221
local doc = process_quarto_markdown_input_element(span)
2322
return doc.blocks[1].content
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)