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.
Quoted
1 parent d3191c5 commit 6ab95daCopy full SHA for 6ab95da
pandoc-quotes.lua/pandoc-quotes.lua
@@ -460,8 +460,8 @@ do
460
-- the content of `quoted`, and the closing quote (as `pandoc.Str`).
461
function insert_quot_marks (quoted)
462
if not QUOT_MARKS then return end
463
- local quote_type = quoted.c[1]
464
- local inlines = quoted.c[2]
+ local quote_type = quoted.quotetype
+ local inlines = quoted.content
465
local left, right
466
if quote_type == 'DoubleQuote' then left, right = 1, 2
467
elseif quote_type == 'SingleQuote' then left, right = 3, 4
0 commit comments