6 lines
133 B
Lua
6 lines
133 B
Lua
function Math(el)
|
|
if el.mathtype == "InlineMath" then
|
|
return pandoc.RawInline("markdown", "\\(" .. el.text .. "\\)")
|
|
end
|
|
end
|