pandoc/test/lua/math.lua

11 lines
165 B
Lua
Raw Normal View History

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