uni-ausarbeitung/templates/germanquotes.lua

6 lines
224 B
Lua
Raw Normal View History

-- see https://github.com/jgm/pandoc/issues/5470#issuecomment-489158514
function Quoted(el)
if el.quotetype == 'DoubleQuote' then
return {pandoc.Str(""), pandoc.Span(el.content), pandoc.Str("")}
end
end