1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import './lib/assistive-mml.js';
import {AssistiveMmlHandler} from '../../../../js/a11y/assistive-mml.js';
if (MathJax.startup) {
MathJax.startup.extendHandler(handler => AssistiveMmlHandler(handler));
}

View File

@@ -0,0 +1,5 @@
{
"component": "a11y/assistive-mml",
"targets": ["a11y/assistive-mml.ts"]
}

View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LimitedMmlVisitor = MathJax._.a11y['assistive-mml'].LimitedMmlVisitor;
exports.AssistiveMmlMathItemMixin = MathJax._.a11y['assistive-mml'].AssistiveMmlMathItemMixin;
exports.AssistiveMmlMathDocumentMixin = MathJax._.a11y['assistive-mml'].AssistiveMmlMathDocumentMixin;
exports.AssistiveMmlHandler = MathJax._.a11y['assistive-mml'].AssistiveMmlHandler;

View File

@@ -0,0 +1,14 @@
import {combineWithMathJax} from '../../../../../js/components/global.js';
import {VERSION} from '../../../../../js/components/version.js';
import * as module1 from '../../../../../js/a11y/assistive-mml.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('a11y/assistive-mml', VERSION, 'a11y');
}
combineWithMathJax({_: {
a11y: {
"assistive-mml": module1
}
}});

View File

@@ -0,0 +1,11 @@
const PACKAGE = require('../../../webpack.common.js');
module.exports = PACKAGE(
'a11y/assistive-mml', // the package to build
'../../../../js', // location of the MathJax js library
[ // packages to link to
'components/src/input/mml/lib',
'components/src/core/lib'
],
__dirname // our directory
);

View File

@@ -0,0 +1,8 @@
{
"component": "a11y/complexity",
"targets": [
"a11y/complexity.ts",
"a11y/complexity",
"a11y/semantic-enrich.ts"
]
}

View File

@@ -0,0 +1,9 @@
import './lib/complexity.js';
import {combineDefaults} from '../../../../js/components/global.js';
import {ComplexityHandler} from '../../../../js/a11y/complexity.js';
if (MathJax.startup) {
MathJax.startup.extendHandler(handler => ComplexityHandler(handler));
combineDefaults(MathJax.config, 'options', MathJax.config['a11y/complexity'] || {});
}

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.ComplexityMathItemMixin = MathJax._.a11y.complexity_ts.ComplexityMathItemMixin;
exports.ComplexityMathDocumentMixin = MathJax._.a11y.complexity_ts.ComplexityMathDocumentMixin;
exports.ComplexityHandler = MathJax._.a11y.complexity_ts.ComplexityHandler;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.Collapse = MathJax._.a11y.complexity.collapse.Collapse;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.ComplexityVisitor = MathJax._.a11y.complexity.visitor.ComplexityVisitor;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.EnrichedMathItemMixin = MathJax._.a11y['semantic-enrich'].EnrichedMathItemMixin;
exports.EnrichedMathDocumentMixin = MathJax._.a11y['semantic-enrich'].EnrichedMathDocumentMixin;
exports.EnrichHandler = MathJax._.a11y['semantic-enrich'].EnrichHandler;

View File

@@ -0,0 +1,22 @@
import {combineWithMathJax} from '../../../../../js/components/global.js';
import {VERSION} from '../../../../../js/components/version.js';
import * as module1 from '../../../../../js/a11y/complexity.js';
import * as module2 from '../../../../../js/a11y/complexity/collapse.js';
import * as module3 from '../../../../../js/a11y/complexity/visitor.js';
import * as module4 from '../../../../../js/a11y/semantic-enrich.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('a11y/complexity', VERSION, 'a11y');
}
combineWithMathJax({_: {
a11y: {
complexity_ts: module1,
complexity: {
collapse: module2,
visitor: module3
},
"semantic-enrich": module4
}
}});

View File

@@ -0,0 +1,12 @@
const PACKAGE = require('../../../webpack.common.js');
module.exports = PACKAGE(
'a11y/complexity', // the package to build
'../../../../js', // location of the MathJax js library
[ // packages to link to
'components/src/a11y/semantic-enrich/lib',
'components/src/input/mml/lib',
'components/src/core/lib'
],
__dirname // our directory
);

View File

@@ -0,0 +1,4 @@
{
"component": "a11y/explorer",
"targets": ["a11y/explorer.ts", "a11y/explorer"]
}

View File

@@ -0,0 +1,8 @@
import './lib/explorer.js';
import {combineDefaults} from '../../../../js/components/global.js';
import {ExplorerHandler} from '../../../../js/a11y/explorer.js';
if (MathJax.startup) {
MathJax.startup.extendHandler(handler => ExplorerHandler(handler));
}

View File

@@ -0,0 +1,7 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.ExplorerMathItemMixin = MathJax._.a11y.explorer_ts.ExplorerMathItemMixin;
exports.ExplorerMathDocumentMixin = MathJax._.a11y.explorer_ts.ExplorerMathDocumentMixin;
exports.ExplorerHandler = MathJax._.a11y.explorer_ts.ExplorerHandler;
exports.setA11yOptions = MathJax._.a11y.explorer_ts.setA11yOptions;
exports.setA11yOption = MathJax._.a11y.explorer_ts.setA11yOption;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractExplorer = MathJax._.a11y.explorer.Explorer.AbstractExplorer;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractKeyExplorer = MathJax._.a11y.explorer.KeyExplorer.AbstractKeyExplorer;
exports.SpeechExplorer = MathJax._.a11y.explorer.KeyExplorer.SpeechExplorer;
exports.Magnifier = MathJax._.a11y.explorer.KeyExplorer.Magnifier;

View File

@@ -0,0 +1,7 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractMouseExplorer = MathJax._.a11y.explorer.MouseExplorer.AbstractMouseExplorer;
exports.Hoverer = MathJax._.a11y.explorer.MouseExplorer.Hoverer;
exports.ValueHoverer = MathJax._.a11y.explorer.MouseExplorer.ValueHoverer;
exports.ContentHoverer = MathJax._.a11y.explorer.MouseExplorer.ContentHoverer;
exports.FlameHoverer = MathJax._.a11y.explorer.MouseExplorer.FlameHoverer;

View File

@@ -0,0 +1,8 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractRegion = MathJax._.a11y.explorer.Region.AbstractRegion;
exports.DummyRegion = MathJax._.a11y.explorer.Region.DummyRegion;
exports.StringRegion = MathJax._.a11y.explorer.Region.StringRegion;
exports.ToolTip = MathJax._.a11y.explorer.Region.ToolTip;
exports.LiveRegion = MathJax._.a11y.explorer.Region.LiveRegion;
exports.HoverRegion = MathJax._.a11y.explorer.Region.HoverRegion;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractTreeExplorer = MathJax._.a11y.explorer.TreeExplorer.AbstractTreeExplorer;
exports.FlameColorer = MathJax._.a11y.explorer.TreeExplorer.FlameColorer;
exports.TreeColorer = MathJax._.a11y.explorer.TreeExplorer.TreeColorer;

View File

@@ -0,0 +1,26 @@
import {combineWithMathJax} from '../../../../../js/components/global.js';
import {VERSION} from '../../../../../js/components/version.js';
import * as module1 from '../../../../../js/a11y/explorer.js';
import * as module2 from '../../../../../js/a11y/explorer/Explorer.js';
import * as module3 from '../../../../../js/a11y/explorer/KeyExplorer.js';
import * as module4 from '../../../../../js/a11y/explorer/MouseExplorer.js';
import * as module5 from '../../../../../js/a11y/explorer/Region.js';
import * as module6 from '../../../../../js/a11y/explorer/TreeExplorer.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('a11y/explorer', VERSION, 'a11y');
}
combineWithMathJax({_: {
a11y: {
explorer_ts: module1,
explorer: {
Explorer: module2,
KeyExplorer: module3,
MouseExplorer: module4,
Region: module5,
TreeExplorer: module6
}
}
}});

View File

@@ -0,0 +1,14 @@
const PACKAGE = require('../../../webpack.common.js');
module.exports = PACKAGE(
'a11y/explorer', // the package to build
'../../../../js', // location of the MathJax js library
[ // packages to link to
'components/src/ui/menu/lib',
'components/src/a11y/semantic-enrich/lib',
'components/src/a11y/sre/lib',
'components/src/input/mml/lib',
'components/src/core/lib'
],
__dirname // our directory
);

View File

@@ -0,0 +1,5 @@
{
"component": "a11y/semantic-enrich",
"targets": ["a11y/semantic-enrich.ts"]
}

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.EnrichedMathItemMixin = MathJax._.a11y['semantic-enrich'].EnrichedMathItemMixin;
exports.EnrichedMathDocumentMixin = MathJax._.a11y['semantic-enrich'].EnrichedMathDocumentMixin;
exports.EnrichHandler = MathJax._.a11y['semantic-enrich'].EnrichHandler;

View File

@@ -0,0 +1,14 @@
import {combineWithMathJax} from '../../../../../js/components/global.js';
import {VERSION} from '../../../../../js/components/version.js';
import * as module1 from '../../../../../js/a11y/semantic-enrich.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('a11y/semantic-enrich', VERSION, 'a11y');
}
combineWithMathJax({_: {
a11y: {
"semantic-enrich": module1
}
}});

View File

@@ -0,0 +1,14 @@
import './lib/semantic-enrich.js';
import {combineDefaults} from '../../../../js/components/global.js';
import Sre from '../../../../js/a11y/sre.js';
import {EnrichHandler} from '../../../../js/a11y/semantic-enrich.js';
import {MathML} from '../../../../js/input/mathml.js';
if (MathJax.loader) {
combineDefaults(MathJax.config.loader, 'a11y/semantic-enrich', {checkReady: () => Sre.sreReady()});
}
if (MathJax.startup) {
MathJax.startup.extendHandler(handler => EnrichHandler(handler, new MathML()));
}

View File

@@ -0,0 +1,12 @@
const PACKAGE = require('../../../webpack.common.js');
module.exports = PACKAGE(
'a11y/semantic-enrich', // the package to build
'../../../../js', // location of the MathJax js library
[ // packages to link to
'components/src/input/mml/lib',
'components/src/core/lib',
'components/src/a11y/sre/lib'
],
__dirname // our directory
);

View File

@@ -0,0 +1,5 @@
{
"component": "a11y/sre",
"targets": ["a11y/sre.ts"]
}

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.Sre = MathJax._.a11y.sre.Sre;
exports.sreReady = MathJax._.a11y.sre.sreReady;
exports.default = MathJax._.a11y.sre.default;

View File

@@ -0,0 +1,14 @@
import {combineWithMathJax} from '../../../../../js/components/global.js';
import {VERSION} from '../../../../../js/components/version.js';
import * as module1 from '../../../../../js/a11y/sre.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('a11y/sre', VERSION, 'a11y');
}
combineWithMathJax({_: {
a11y: {
sre: module1
}
}});

View File

@@ -0,0 +1,9 @@
import './lib/sre.js';
import './sre_config.js';
import Sre from '../../../../js/a11y/sre.js';
if (MathJax.startup) {
((typeof window !== 'undefined') ? window : global).
SREfeature.custom = (loc) => Sre.preloadLocales(loc);
}

View File

@@ -0,0 +1,19 @@
import {combineDefaults} from '../../../../js/components/global.js';
import {Package} from '../../../../js/components/package.js';
// This sets up the correct link to the mathmaps files.
if (MathJax.startup) {
let path = Package.resolvePath('[sre]', false);
if (typeof window !== 'undefined') {
window.SREfeature = {json: path};
} else {
// In Node get the absolute path to the mathmaps directory.
try {
path = MathJax.config.loader.require.resolve(
path + '/base.json').replace(/\/base\.json$/, '');
} catch(_err) { }
global.SREfeature = {json: path};
}
}

View File

@@ -0,0 +1,12 @@
const PACKAGE = require('../../../webpack.common.js');
module.exports = PACKAGE(
'a11y/sre', // the package to build
'../../../../js', // location of the MathJax js library
[ // packages to link to
'components/src/input/mml/lib',
'components/src/core/lib',
'components/src/startup/lib'
],
__dirname // our directory
);

View File

@@ -0,0 +1,5 @@
{
"component": "adaptors/liteDOM",
"targets": ["adaptors/liteAdaptor.ts", "adaptors/lite"]
}

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LiteDocument = MathJax._.adaptors.lite.Document.LiteDocument;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LiteElement = MathJax._.adaptors.lite.Element.LiteElement;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LiteList = MathJax._.adaptors.lite.List.LiteList;

View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.PATTERNS = MathJax._.adaptors.lite.Parser.PATTERNS;
exports.LiteParser = MathJax._.adaptors.lite.Parser.LiteParser;

View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LiteText = MathJax._.adaptors.lite.Text.LiteText;
exports.LiteComment = MathJax._.adaptors.lite.Text.LiteComment;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LiteWindow = MathJax._.adaptors.lite.Window.LiteWindow;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.LiteBase = MathJax._.adaptors.liteAdaptor.LiteBase;
exports.LiteAdaptor = MathJax._.adaptors.liteAdaptor.LiteAdaptor;
exports.liteAdaptor = MathJax._.adaptors.liteAdaptor.liteAdaptor;

View File

@@ -0,0 +1,28 @@
import {combineWithMathJax} from '../../../../../js/components/global.js';
import {VERSION} from '../../../../../js/components/version.js';
import * as module1 from '../../../../../js/adaptors/liteAdaptor.js';
import * as module2 from '../../../../../js/adaptors/lite/Document.js';
import * as module3 from '../../../../../js/adaptors/lite/Element.js';
import * as module4 from '../../../../../js/adaptors/lite/List.js';
import * as module5 from '../../../../../js/adaptors/lite/Parser.js';
import * as module6 from '../../../../../js/adaptors/lite/Text.js';
import * as module7 from '../../../../../js/adaptors/lite/Window.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('adaptors/liteDOM', VERSION, 'adaptors');
}
combineWithMathJax({_: {
adaptors: {
liteAdaptor: module1,
lite: {
Document: module2,
Element: module3,
List: module4,
Parser: module5,
Text: module6,
Window: module7
}
}
}});

View File

@@ -0,0 +1,8 @@
import './lib/liteDOM.js';
import {liteAdaptor} from '../../../../js/adaptors/liteAdaptor.js';
if (MathJax.startup) {
MathJax.startup.registerConstructor('liteAdaptor', liteAdaptor);
MathJax.startup.useAdaptor('liteAdaptor', true);
}

View File

@@ -0,0 +1,8 @@
const PACKAGE = require('../../../webpack.common.js');
module.exports = PACKAGE(
'adaptors/liteDOM', // the package to build
'../../../../js', // location of the MathJax js library
['components/src/core/lib'], // packages to link to
__dirname // our directory
);

View File

@@ -0,0 +1,20 @@
{
"component": "core",
"targets": [
"mathjax.ts",
"core", "util", "handlers",
"adaptors/HTMLAdaptor.ts",
"adaptors/browserAdaptor.ts",
"components/global.ts"
],
"exclude": [
"core/MmlTree/JsonMmlVisitor.ts",
"core/MmlTree/LegacyMmlVisitor.ts",
"core/MmlTree/TestMmlVisitor.ts",
"util/asyncLoad",
"util/entities"
]
}

14
node_modules/mathjax-full/components/src/core/core.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import './lib/core.js';
import {HTMLHandler} from '../../../js/handlers/html/HTMLHandler.js';
import {browserAdaptor} from '../../../js/adaptors/browserAdaptor.js';
if (MathJax.startup) {
MathJax.startup.registerConstructor('HTMLHandler', HTMLHandler);
MathJax.startup.registerConstructor('browserAdaptor', browserAdaptor);
MathJax.startup.useHandler('HTMLHandler');
MathJax.startup.useAdaptor('browserAdaptor');
}
if (MathJax.loader) {
MathJax._.mathjax.mathjax.asyncLoad = (name => MathJax.loader.load(name));
}

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.HTMLAdaptor = MathJax._.adaptors.HTMLAdaptor.HTMLAdaptor;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.browserAdaptor = MathJax._.adaptors.browserAdaptor.browserAdaptor;

View File

@@ -0,0 +1,7 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.isObject = MathJax._.components.global.isObject;
exports.combineConfig = MathJax._.components.global.combineConfig;
exports.combineDefaults = MathJax._.components.global.combineDefaults;
exports.combineWithMathJax = MathJax._.components.global.combineWithMathJax;
exports.MathJax = MathJax._.components.global.MathJax;

View File

@@ -0,0 +1,182 @@
import {combineWithMathJax} from '../../../../js/components/global.js';
import {VERSION} from '../../../../js/components/version.js';
import * as module1 from '../../../../js/adaptors/HTMLAdaptor.js';
import * as module2 from '../../../../js/adaptors/browserAdaptor.js';
import * as module3 from '../../../../js/components/global.js';
import * as module4 from '../../../../js/core/DOMAdaptor.js';
import * as module5 from '../../../../js/core/FindMath.js';
import * as module6 from '../../../../js/core/Handler.js';
import * as module7 from '../../../../js/core/HandlerList.js';
import * as module8 from '../../../../js/core/InputJax.js';
import * as module9 from '../../../../js/core/MathDocument.js';
import * as module10 from '../../../../js/core/MathItem.js';
import * as module11 from '../../../../js/core/MathList.js';
import * as module12 from '../../../../js/core/MmlTree/Attributes.js';
import * as module13 from '../../../../js/core/MmlTree/MML.js';
import * as module14 from '../../../../js/core/MmlTree/MathMLVisitor.js';
import * as module15 from '../../../../js/core/MmlTree/MmlFactory.js';
import * as module16 from '../../../../js/core/MmlTree/MmlNode.js';
import * as module17 from '../../../../js/core/MmlTree/MmlNodes/TeXAtom.js';
import * as module18 from '../../../../js/core/MmlTree/MmlNodes/maction.js';
import * as module19 from '../../../../js/core/MmlTree/MmlNodes/maligngroup.js';
import * as module20 from '../../../../js/core/MmlTree/MmlNodes/malignmark.js';
import * as module21 from '../../../../js/core/MmlTree/MmlNodes/math.js';
import * as module22 from '../../../../js/core/MmlTree/MmlNodes/mathchoice.js';
import * as module23 from '../../../../js/core/MmlTree/MmlNodes/menclose.js';
import * as module24 from '../../../../js/core/MmlTree/MmlNodes/merror.js';
import * as module25 from '../../../../js/core/MmlTree/MmlNodes/mfenced.js';
import * as module26 from '../../../../js/core/MmlTree/MmlNodes/mfrac.js';
import * as module27 from '../../../../js/core/MmlTree/MmlNodes/mglyph.js';
import * as module28 from '../../../../js/core/MmlTree/MmlNodes/mi.js';
import * as module29 from '../../../../js/core/MmlTree/MmlNodes/mmultiscripts.js';
import * as module30 from '../../../../js/core/MmlTree/MmlNodes/mn.js';
import * as module31 from '../../../../js/core/MmlTree/MmlNodes/mo.js';
import * as module32 from '../../../../js/core/MmlTree/MmlNodes/mpadded.js';
import * as module33 from '../../../../js/core/MmlTree/MmlNodes/mphantom.js';
import * as module34 from '../../../../js/core/MmlTree/MmlNodes/mroot.js';
import * as module35 from '../../../../js/core/MmlTree/MmlNodes/mrow.js';
import * as module36 from '../../../../js/core/MmlTree/MmlNodes/ms.js';
import * as module37 from '../../../../js/core/MmlTree/MmlNodes/mspace.js';
import * as module38 from '../../../../js/core/MmlTree/MmlNodes/msqrt.js';
import * as module39 from '../../../../js/core/MmlTree/MmlNodes/mstyle.js';
import * as module40 from '../../../../js/core/MmlTree/MmlNodes/msubsup.js';
import * as module41 from '../../../../js/core/MmlTree/MmlNodes/mtable.js';
import * as module42 from '../../../../js/core/MmlTree/MmlNodes/mtd.js';
import * as module43 from '../../../../js/core/MmlTree/MmlNodes/mtext.js';
import * as module44 from '../../../../js/core/MmlTree/MmlNodes/mtr.js';
import * as module45 from '../../../../js/core/MmlTree/MmlNodes/munderover.js';
import * as module46 from '../../../../js/core/MmlTree/MmlNodes/semantics.js';
import * as module47 from '../../../../js/core/MmlTree/MmlVisitor.js';
import * as module48 from '../../../../js/core/MmlTree/OperatorDictionary.js';
import * as module49 from '../../../../js/core/MmlTree/SerializedMmlVisitor.js';
import * as module50 from '../../../../js/core/OutputJax.js';
import * as module51 from '../../../../js/core/Tree/Factory.js';
import * as module52 from '../../../../js/core/Tree/Node.js';
import * as module53 from '../../../../js/core/Tree/NodeFactory.js';
import * as module54 from '../../../../js/core/Tree/Visitor.js';
import * as module55 from '../../../../js/core/Tree/Wrapper.js';
import * as module56 from '../../../../js/core/Tree/WrapperFactory.js';
import * as module57 from '../../../../js/handlers/html.js';
import * as module58 from '../../../../js/handlers/html/HTMLDocument.js';
import * as module59 from '../../../../js/handlers/html/HTMLDomStrings.js';
import * as module60 from '../../../../js/handlers/html/HTMLHandler.js';
import * as module61 from '../../../../js/handlers/html/HTMLMathItem.js';
import * as module62 from '../../../../js/handlers/html/HTMLMathList.js';
import * as module63 from '../../../../js/mathjax.js';
import * as module64 from '../../../../js/util/AsyncLoad.js';
import * as module65 from '../../../../js/util/BBox.js';
import * as module66 from '../../../../js/util/BitField.js';
import * as module67 from '../../../../js/util/Entities.js';
import * as module68 from '../../../../js/util/FunctionList.js';
import * as module69 from '../../../../js/util/LinkedList.js';
import * as module70 from '../../../../js/util/Options.js';
import * as module71 from '../../../../js/util/PrioritizedList.js';
import * as module72 from '../../../../js/util/Retries.js';
import * as module73 from '../../../../js/util/StyleList.js';
import * as module74 from '../../../../js/util/Styles.js';
import * as module75 from '../../../../js/util/lengths.js';
import * as module76 from '../../../../js/util/numeric.js';
import * as module77 from '../../../../js/util/string.js';
if (MathJax.loader) {
MathJax.loader.checkVersion('core', VERSION, 'core');
}
combineWithMathJax({_: {
adaptors: {
HTMLAdaptor: module1,
browserAdaptor: module2
},
components: {
global: module3
},
core: {
DOMAdaptor: module4,
FindMath: module5,
Handler: module6,
HandlerList: module7,
InputJax: module8,
MathDocument: module9,
MathItem: module10,
MathList: module11,
MmlTree: {
Attributes: module12,
MML: module13,
MathMLVisitor: module14,
MmlFactory: module15,
MmlNode: module16,
MmlNodes: {
TeXAtom: module17,
maction: module18,
maligngroup: module19,
malignmark: module20,
math: module21,
mathchoice: module22,
menclose: module23,
merror: module24,
mfenced: module25,
mfrac: module26,
mglyph: module27,
mi: module28,
mmultiscripts: module29,
mn: module30,
mo: module31,
mpadded: module32,
mphantom: module33,
mroot: module34,
mrow: module35,
ms: module36,
mspace: module37,
msqrt: module38,
mstyle: module39,
msubsup: module40,
mtable: module41,
mtd: module42,
mtext: module43,
mtr: module44,
munderover: module45,
semantics: module46
},
MmlVisitor: module47,
OperatorDictionary: module48,
SerializedMmlVisitor: module49
},
OutputJax: module50,
Tree: {
Factory: module51,
Node: module52,
NodeFactory: module53,
Visitor: module54,
Wrapper: module55,
WrapperFactory: module56
}
},
handlers: {
html_ts: module57,
html: {
HTMLDocument: module58,
HTMLDomStrings: module59,
HTMLHandler: module60,
HTMLMathItem: module61,
HTMLMathList: module62
}
},
mathjax: module63,
util: {
AsyncLoad: module64,
BBox: module65,
BitField: module66,
Entities: module67,
FunctionList: module68,
LinkedList: module69,
Options: module70,
PrioritizedList: module71,
Retries: module72,
StyleList: module73,
Styles: module74,
lengths: module75,
numeric: module76,
string: module77
}
}});

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractDOMAdaptor = MathJax._.core.DOMAdaptor.AbstractDOMAdaptor;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractFindMath = MathJax._.core.FindMath.AbstractFindMath;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractHandler = MathJax._.core.Handler.AbstractHandler;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.HandlerList = MathJax._.core.HandlerList.HandlerList;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractInputJax = MathJax._.core.InputJax.AbstractInputJax;

View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.RenderList = MathJax._.core.MathDocument.RenderList;
exports.resetOptions = MathJax._.core.MathDocument.resetOptions;
exports.resetAllOptions = MathJax._.core.MathDocument.resetAllOptions;
exports.AbstractMathDocument = MathJax._.core.MathDocument.AbstractMathDocument;

View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.protoItem = MathJax._.core.MathItem.protoItem;
exports.AbstractMathItem = MathJax._.core.MathItem.AbstractMathItem;
exports.STATE = MathJax._.core.MathItem.STATE;
exports.newState = MathJax._.core.MathItem.newState;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractMathList = MathJax._.core.MathList.AbstractMathList;

View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.INHERIT = MathJax._.core.MmlTree.Attributes.INHERIT;
exports.Attributes = MathJax._.core.MmlTree.Attributes.Attributes;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MML = MathJax._.core.MmlTree.MML.MML;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MathMLVisitor = MathJax._.core.MmlTree.MathMLVisitor.MathMLVisitor;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlFactory = MathJax._.core.MmlTree.MmlFactory.MmlFactory;

View File

@@ -0,0 +1,12 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.TEXCLASS = MathJax._.core.MmlTree.MmlNode.TEXCLASS;
exports.TEXCLASSNAMES = MathJax._.core.MmlTree.MmlNode.TEXCLASSNAMES;
exports.indentAttributes = MathJax._.core.MmlTree.MmlNode.indentAttributes;
exports.AbstractMmlNode = MathJax._.core.MmlTree.MmlNode.AbstractMmlNode;
exports.AbstractMmlTokenNode = MathJax._.core.MmlTree.MmlNode.AbstractMmlTokenNode;
exports.AbstractMmlLayoutNode = MathJax._.core.MmlTree.MmlNode.AbstractMmlLayoutNode;
exports.AbstractMmlBaseNode = MathJax._.core.MmlTree.MmlNode.AbstractMmlBaseNode;
exports.AbstractMmlEmptyNode = MathJax._.core.MmlTree.MmlNode.AbstractMmlEmptyNode;
exports.TextNode = MathJax._.core.MmlTree.MmlNode.TextNode;
exports.XMLNode = MathJax._.core.MmlTree.MmlNode.XMLNode;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.TeXAtom = MathJax._.core.MmlTree.MmlNodes.TeXAtom.TeXAtom;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMaction = MathJax._.core.MmlTree.MmlNodes.maction.MmlMaction;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMaligngroup = MathJax._.core.MmlTree.MmlNodes.maligngroup.MmlMaligngroup;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMalignmark = MathJax._.core.MmlTree.MmlNodes.malignmark.MmlMalignmark;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMath = MathJax._.core.MmlTree.MmlNodes.math.MmlMath;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MathChoice = MathJax._.core.MmlTree.MmlNodes.mathchoice.MathChoice;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMenclose = MathJax._.core.MmlTree.MmlNodes.menclose.MmlMenclose;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMerror = MathJax._.core.MmlTree.MmlNodes.merror.MmlMerror;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMfenced = MathJax._.core.MmlTree.MmlNodes.mfenced.MmlMfenced;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMfrac = MathJax._.core.MmlTree.MmlNodes.mfrac.MmlMfrac;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMglyph = MathJax._.core.MmlTree.MmlNodes.mglyph.MmlMglyph;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMi = MathJax._.core.MmlTree.MmlNodes.mi.MmlMi;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMmultiscripts = MathJax._.core.MmlTree.MmlNodes.mmultiscripts.MmlMmultiscripts;
exports.MmlMprescripts = MathJax._.core.MmlTree.MmlNodes.mmultiscripts.MmlMprescripts;
exports.MmlNone = MathJax._.core.MmlTree.MmlNodes.mmultiscripts.MmlNone;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMn = MathJax._.core.MmlTree.MmlNodes.mn.MmlMn;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMo = MathJax._.core.MmlTree.MmlNodes.mo.MmlMo;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMpadded = MathJax._.core.MmlTree.MmlNodes.mpadded.MmlMpadded;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMphantom = MathJax._.core.MmlTree.MmlNodes.mphantom.MmlMphantom;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMroot = MathJax._.core.MmlTree.MmlNodes.mroot.MmlMroot;

View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMrow = MathJax._.core.MmlTree.MmlNodes.mrow.MmlMrow;
exports.MmlInferredMrow = MathJax._.core.MmlTree.MmlNodes.mrow.MmlInferredMrow;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMs = MathJax._.core.MmlTree.MmlNodes.ms.MmlMs;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMspace = MathJax._.core.MmlTree.MmlNodes.mspace.MmlMspace;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMsqrt = MathJax._.core.MmlTree.MmlNodes.msqrt.MmlMsqrt;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMstyle = MathJax._.core.MmlTree.MmlNodes.mstyle.MmlMstyle;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMsubsup = MathJax._.core.MmlTree.MmlNodes.msubsup.MmlMsubsup;
exports.MmlMsub = MathJax._.core.MmlTree.MmlNodes.msubsup.MmlMsub;
exports.MmlMsup = MathJax._.core.MmlTree.MmlNodes.msubsup.MmlMsup;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMtable = MathJax._.core.MmlTree.MmlNodes.mtable.MmlMtable;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMtd = MathJax._.core.MmlTree.MmlNodes.mtd.MmlMtd;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMtext = MathJax._.core.MmlTree.MmlNodes.mtext.MmlMtext;

View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMtr = MathJax._.core.MmlTree.MmlNodes.mtr.MmlMtr;
exports.MmlMlabeledtr = MathJax._.core.MmlTree.MmlNodes.mtr.MmlMlabeledtr;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlMunderover = MathJax._.core.MmlTree.MmlNodes.munderover.MmlMunderover;
exports.MmlMunder = MathJax._.core.MmlTree.MmlNodes.munderover.MmlMunder;
exports.MmlMover = MathJax._.core.MmlTree.MmlNodes.munderover.MmlMover;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlSemantics = MathJax._.core.MmlTree.MmlNodes.semantics.MmlSemantics;
exports.MmlAnnotationXML = MathJax._.core.MmlTree.MmlNodes.semantics.MmlAnnotationXML;
exports.MmlAnnotation = MathJax._.core.MmlTree.MmlNodes.semantics.MmlAnnotation;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.MmlVisitor = MathJax._.core.MmlTree.MmlVisitor.MmlVisitor;

View File

@@ -0,0 +1,8 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.OPDEF = MathJax._.core.MmlTree.OperatorDictionary.OPDEF;
exports.MO = MathJax._.core.MmlTree.OperatorDictionary.MO;
exports.RANGES = MathJax._.core.MmlTree.OperatorDictionary.RANGES;
exports.getRange = MathJax._.core.MmlTree.OperatorDictionary.getRange;
exports.MMLSPACING = MathJax._.core.MmlTree.OperatorDictionary.MMLSPACING;
exports.OPTABLE = MathJax._.core.MmlTree.OperatorDictionary.OPTABLE;

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.DATAMJX = MathJax._.core.MmlTree.SerializedMmlVisitor.DATAMJX;
exports.toEntity = MathJax._.core.MmlTree.SerializedMmlVisitor.toEntity;
exports.SerializedMmlVisitor = MathJax._.core.MmlTree.SerializedMmlVisitor.SerializedMmlVisitor;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractOutputJax = MathJax._.core.OutputJax.AbstractOutputJax;

View File

@@ -0,0 +1,3 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractFactory = MathJax._.core.Tree.Factory.AbstractFactory;

View File

@@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, '__esModule', {value: true});
exports.AbstractNode = MathJax._.core.Tree.Node.AbstractNode;
exports.AbstractEmptyNode = MathJax._.core.Tree.Node.AbstractEmptyNode;

Some files were not shown because too many files have changed in this diff Show More