mirror of
https://gitlab.com/upRootNutrition/obsidian.git
synced 2025-06-15 06:25:12 -05:00
12 lines
245 B
Lua
12 lines
245 B
Lua
|
|
return {
|
|
{
|
|
Math = function (elem)
|
|
if elem.text:find("^%s*\\begin{") ~= nil then
|
|
return pandoc.RawInline('tex', elem.text)
|
|
else
|
|
return elem
|
|
end
|
|
end,
|
|
}
|
|
}
|