Unbreak explicitly suppressing MathML conversion of elements

This commit is contained in:
Marcel Fabian Krüger 2024-10-20 00:58:08 +02:00
parent 071cf90549
commit e5d5ac2efe

View File

@ -59,10 +59,10 @@ local function annotate()
props = {} props = {}
properties[marked] = props properties[marked] = props
end end
if annotation.core then if annotation.core ~= nil then
props.mathml_core = annotation.core props.mathml_core = annotation.core
end end
if annotation.struct then if annotation.struct ~= nil then
local saved = props.mathml_filter local saved = props.mathml_filter
local struct = annotation.struct local struct = annotation.struct
function props.mathml_filter(mml, core) function props.mathml_filter(mml, core)