site/node_modules/mathjax-full/components/src/dependencies.js
2024-10-14 08:09:33 +02:00

97 lines
3.4 KiB
JavaScript

/*************************************************************
*
* Copyright (c) 2019-2021 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.
*/
export const dependencies = {
'a11y/semantic-enrich': ['input/mml', 'a11y/sre'],
'a11y/complexity': ['a11y/semantic-enrich'],
'a11y/explorer': ['a11y/semantic-enrich', 'ui/menu'],
'[mml]/mml3': ['input/mml'],
'[tex]/all-packages': ['input/tex-base'],
'[tex]/action': ['input/tex-base', '[tex]/newcommand'],
'[tex]/autoload': ['input/tex-base', '[tex]/require'],
'[tex]/ams': ['input/tex-base'],
'[tex]/amscd': ['input/tex-base'],
'[tex]/bbox': ['input/tex-base', '[tex]/ams', '[tex]/newcommand'],
'[tex]/boldsymbol': ['input/tex-base'],
'[tex]/braket': ['input/tex-base'],
'[tex]/bussproofs': ['input/tex-base'],
'[tex]/cancel': ['input/tex-base', '[tex]/enclose'],
'[tex]/centernot': ['input/tex-base'],
'[tex]/color': ['input/tex-base'],
'[tex]/colorv2': ['input/tex-base'],
'[tex]/colortbl': ['input/tex-base', '[tex]/color'],
'[tex]/configmacros': ['input/tex-base', '[tex]/newcommand'],
'[tex]/enclose': ['input/tex-base'],
'[tex]/extpfeil': ['input/tex-base', '[tex]/newcommand', '[tex]/ams'],
'[tex]/html': ['input/tex-base'],
'[tex]/mathtools': ['input/tex-base', '[tex]/newcommand', '[tex]/ams'],
'[tex]/mhchem': ['input/tex-base', '[tex]/ams'],
'[tex]/newcommand': ['input/tex-base'],
'[tex]/noerrors': ['input/tex-base'],
'[tex]/noundefined': ['input/tex-base'],
'[tex]/physics': ['input/tex-base'],
'[tex]/require': ['input/tex-base'],
'[tex]/setoptions': ['input/tex-base'],
'[tex]/tagformat': ['input/tex-base'],
'[tex]/textcomp': ['input/tex-base', '[tex]/textmacros'],
'[tex]/textmacros': ['input/tex-base'],
'[tex]/unicode': ['input/tex-base'],
'[tex]/verb': ['input/tex-base'],
'[tex]/cases': ['[tex]/empheq'],
'[tex]/empheq': ['input/tex-base', '[tex]/ams']
};
export const paths = {
tex: '[mathjax]/input/tex/extensions',
mml: '[mathjax]/input/mml/extensions',
sre: '[mathjax]/sre/mathmaps'
};
const allPackages = Array.from(Object.keys(dependencies))
.filter(name => name.substr(0,5) === '[tex]' &&
name !== '[tex]/autoload' &&
name !== '[tex]/colorv2' &&
name !== '[tex]/all-packages');
export const provides = {
'startup': ['loader'],
'input/tex': [
'input/tex-base',
'[tex]/ams',
'[tex]/newcommand',
'[tex]/noundefined',
'[tex]/require',
'[tex]/autoload',
'[tex]/configmacros'
],
'input/tex-full': [
'input/tex-base',
'[tex]/all-packages',
...allPackages
],
'[tex]/all-packages': allPackages
};
//
// Compatibility with v3.0 names for TeX extensions
//
export const compatibility = {
'[tex]/amsCd': '[tex]/amscd',
'[tex]/colorV2': '[tex]/colorv2',
'[tex]/configMacros': '[tex]/configmacros',
'[tex]/tagFormat': '[tex]/tagformat'
};