123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*************************************************************
- *
- * Copyright (c) 2017-2022 The MathJax Consortium
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @fileoverview An object listing all the MathML node types
- *
- * @author dpvc@mathjax.org (Davide Cervone)
- */
- import {MmlNodeClass, TextNode, XMLNode} from './MmlNode.js';
- import {MmlMath} from './MmlNodes/math.js';
- import {MmlMi} from './MmlNodes/mi.js';
- import {MmlMn} from './MmlNodes/mn.js';
- import {MmlMo} from './MmlNodes/mo.js';
- import {MmlMtext} from './MmlNodes/mtext.js';
- import {MmlMspace} from './MmlNodes/mspace.js';
- import {MmlMs} from './MmlNodes/ms.js';
- import {MmlMrow, MmlInferredMrow} from './MmlNodes/mrow.js';
- import {MmlMfrac} from './MmlNodes/mfrac.js';
- import {MmlMsqrt} from './MmlNodes/msqrt.js';
- import {MmlMroot} from './MmlNodes/mroot.js';
- import {MmlMstyle} from './MmlNodes/mstyle.js';
- import {MmlMerror} from './MmlNodes/merror.js';
- import {MmlMpadded} from './MmlNodes/mpadded.js';
- import {MmlMphantom} from './MmlNodes/mphantom.js';
- import {MmlMfenced} from './MmlNodes/mfenced.js';
- import {MmlMenclose} from './MmlNodes/menclose.js';
- import {MmlMaction} from './MmlNodes/maction.js';
- import {MmlMsubsup, MmlMsub, MmlMsup} from './MmlNodes/msubsup.js';
- import {MmlMunderover, MmlMunder, MmlMover} from './MmlNodes/munderover.js';
- import {MmlMmultiscripts, MmlMprescripts, MmlNone} from './MmlNodes/mmultiscripts.js';
- import {MmlMtable} from './MmlNodes/mtable.js';
- import {MmlMtr, MmlMlabeledtr} from './MmlNodes/mtr.js';
- import {MmlMtd} from './MmlNodes/mtd.js';
- import {MmlMaligngroup} from './MmlNodes/maligngroup.js';
- import {MmlMalignmark} from './MmlNodes/malignmark.js';
- import {MmlMglyph} from './MmlNodes/mglyph.js';
- import {MmlSemantics, MmlAnnotation, MmlAnnotationXML} from './MmlNodes/semantics.js';
- import {TeXAtom} from './MmlNodes/TeXAtom.js';
- import {MathChoice} from './MmlNodes/mathchoice.js';
- /************************************************************************/
- /**
- * This object collects all the MathML node types together so that
- * they can be used to seed an MmlNodeFactory. One could copy this
- * object to override existing classes with subclasses, or to add new
- * classes as necessary.
- */
- export let MML: {[kind: string]: MmlNodeClass} = {
- [MmlMath.prototype.kind]: MmlMath,
- [MmlMi.prototype.kind]: MmlMi,
- [MmlMn.prototype.kind]: MmlMn,
- [MmlMo.prototype.kind]: MmlMo,
- [MmlMtext.prototype.kind]: MmlMtext,
- [MmlMspace.prototype.kind]: MmlMspace,
- [MmlMs.prototype.kind]: MmlMs,
- [MmlMrow.prototype.kind]: MmlMrow,
- [MmlInferredMrow.prototype.kind]: MmlInferredMrow,
- [MmlMfrac.prototype.kind]: MmlMfrac,
- [MmlMsqrt.prototype.kind]: MmlMsqrt,
- [MmlMroot.prototype.kind]: MmlMroot,
- [MmlMstyle.prototype.kind]: MmlMstyle,
- [MmlMerror.prototype.kind]: MmlMerror,
- [MmlMpadded.prototype.kind]: MmlMpadded,
- [MmlMphantom.prototype.kind]: MmlMphantom,
- [MmlMfenced.prototype.kind]: MmlMfenced,
- [MmlMenclose.prototype.kind]: MmlMenclose,
- [MmlMaction.prototype.kind]: MmlMaction,
- [MmlMsub.prototype.kind]: MmlMsub,
- [MmlMsup.prototype.kind]: MmlMsup,
- [MmlMsubsup.prototype.kind]: MmlMsubsup,
- [MmlMunder.prototype.kind]: MmlMunder,
- [MmlMover.prototype.kind]: MmlMover,
- [MmlMunderover.prototype.kind]: MmlMunderover,
- [MmlMmultiscripts.prototype.kind]: MmlMmultiscripts,
- [MmlMprescripts.prototype.kind]: MmlMprescripts,
- [MmlNone.prototype.kind]: MmlNone,
- [MmlMtable.prototype.kind]: MmlMtable,
- [MmlMlabeledtr.prototype.kind]: MmlMlabeledtr,
- [MmlMtr.prototype.kind]: MmlMtr,
- [MmlMtd.prototype.kind]: MmlMtd,
- [MmlMaligngroup.prototype.kind]: MmlMaligngroup,
- [MmlMalignmark.prototype.kind]: MmlMalignmark,
- [MmlMglyph.prototype.kind]: MmlMglyph,
- [MmlSemantics.prototype.kind]: MmlSemantics,
- [MmlAnnotation.prototype.kind]: MmlAnnotation,
- [MmlAnnotationXML.prototype.kind]: MmlAnnotationXML,
- [TeXAtom.prototype.kind]: TeXAtom,
- [MathChoice.prototype.kind]: MathChoice,
- [TextNode.prototype.kind]: TextNode,
- [XMLNode.prototype.kind]: XMLNode
- };
|