mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-24 17:26:32 +00:00
11 lines
165 B
Lua
11 lines
165 B
Lua
return {
|
|
{
|
|
Math = function (elem)
|
|
if elem.mathtype == "DisplayMath" then
|
|
elem.mathtype = "InlineMath"
|
|
end
|
|
return elem
|
|
end,
|
|
}
|
|
}
|