pandoc/test/lua/math.lua
2018-04-29 16:20:38 +03:00

10 lines
165 B
Lua

return {
{
Math = function (elem)
if elem.mathtype == "DisplayMath" then
elem.mathtype = "InlineMath"
end
return elem
end,
}
}