MathJax 和 MathML 在 IE 上显示 'Unknown node type: declare'

MathJax and MathML displayed 'Unknown node type: declare' on IE

我正在使用 MathJax 研究 MathML,因为它可以在 IE 和 Chrome 上显示数学表达式。任何方式...当我尝试使用 'declare' 标签时,

<head>
<meta charset="UTF-8">
<title>Mixed Markup</title>

<script type="text/x-mathjax-config">
    MathJax.Hub.Config({
        MathML: {
            extensions: ["content-mathml.js"]
        }
    });
</script>

<script type="text/javascript" async
        src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>

<body>
    <math xmlns="http://www.w3.org/1998/Math/MathML">
        <declare>
            <ci> A </ci>
            <vector>
               <ci> a </ci>
               <ci> b </ci>
               <ci> c </ci>
            </vector>
        </declare>
    </math>
</body>

IE 显示为

Unknown node type: declare

所以...我可以做什么来使用 declare 标签??

<declare> 元素在 MathML 中已弃用,请参见。 the spec 并且 MathJax 的 Content MathML 扩展不支持它;支持较新的 <share> 元素(替换 declare)。