Add pandoc '<br/>' filter

This commit is contained in:
2021-11-28 17:51:29 +01:00
parent a096b52b3e
commit dad7d8fbd5

View File

@@ -0,0 +1,5 @@
function RawInline (el)
if el.format:match '^html' and el.text:match '%<br ?/?%>' then
return pandoc.LineBreak()
end
end