9 lines
219 B
Lua
9 lines
219 B
Lua
|
-- Add a latex insecable space before ":" for words ending with ":"
|
||
|
function Str(elem)
|
||
|
if elem.text:sub(-1) == ":" then
|
||
|
return pandoc.RawInline("latex", elem.text:gsub(":", "~:"))
|
||
|
else
|
||
|
return elem
|
||
|
end
|
||
|
end
|