1+ /*************************************************************
2+ *
3+ * Copyright (c) 2019-2021 The MathJax Consortium
4+ *
5+ * Licensed under the Apache License, Version 2.0 (the "License");
6+ * you may not use this file except in compliance with the License.
7+ * You may obtain a copy of the License at
8+ *
9+ * http://www.apache.org/licenses/LICENSE-2.0
10+ *
11+ * Unless required by applicable law or agreed to in writing, software
12+ * distributed under the License is distributed on an "AS IS" BASIS,
13+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ * See the License for the specific language governing permissions and
15+ * limitations under the License.
16+ */
17+
118export const dependencies = {
219 'a11y/semantic-enrich' : [ 'input/mml' , '[sre]' ] ,
320 'a11y/complexity' : [ 'a11y/semantic-enrich' ] ,
421 'a11y/explorer' : [ 'a11y/semantic-enrich' , 'ui/menu' ] ,
22+ '[mml]/mml3' : [ 'input/mml' ] ,
523 '[tex]/all-packages' : [ 'input/tex-base' ] ,
624 '[tex]/action' : [ 'input/tex-base' , '[tex]/newcommand' ] ,
725 '[tex]/autoload' : [ 'input/tex-base' , '[tex]/require' ] ,
@@ -12,26 +30,34 @@ export const dependencies = {
1230 '[tex]/braket' : [ 'input/tex-base' ] ,
1331 '[tex]/bussproofs' : [ 'input/tex-base' ] ,
1432 '[tex]/cancel' : [ 'input/tex-base' , '[tex]/enclose' ] ,
33+ '[tex]/centernot' : [ 'input/tex-base' ] ,
1534 '[tex]/color' : [ 'input/tex-base' ] ,
1635 '[tex]/colorv2' : [ 'input/tex-base' ] ,
36+ '[tex]/colortbl' : [ 'input/tex-base' , '[tex]/color' ] ,
1737 '[tex]/configmacros' : [ 'input/tex-base' , '[tex]/newcommand' ] ,
1838 '[tex]/enclose' : [ 'input/tex-base' ] ,
1939 '[tex]/extpfeil' : [ 'input/tex-base' , '[tex]/newcommand' , '[tex]/ams' ] ,
2040 '[tex]/html' : [ 'input/tex-base' ] ,
41+ '[tex]/mathtools' : [ 'input/tex-base' , '[tex]/newcommand' , '[tex]/ams' ] ,
2142 '[tex]/mhchem' : [ 'input/tex-base' , '[tex]/ams' ] ,
2243 '[tex]/newcommand' : [ 'input/tex-base' ] ,
2344 '[tex]/noerrors' : [ 'input/tex-base' ] ,
2445 '[tex]/noundefined' : [ 'input/tex-base' ] ,
2546 '[tex]/physics' : [ 'input/tex-base' ] ,
2647 '[tex]/require' : [ 'input/tex-base' ] ,
48+ '[tex]/setoptions' : [ 'input/tex-base' ] ,
2749 '[tex]/tagformat' : [ 'input/tex-base' ] ,
50+ '[tex]/textcomp' : [ 'input/tex-base' , '[tex]/textmacros' ] ,
2851 '[tex]/textmacros' : [ 'input/tex-base' ] ,
2952 '[tex]/unicode' : [ 'input/tex-base' ] ,
30- '[tex]/verb' : [ 'input/tex-base' ]
53+ '[tex]/verb' : [ 'input/tex-base' ] ,
54+ '[tex]/cases' : [ '[tex]/empheq' ] ,
55+ '[tex]/empheq' : [ 'input/tex-base' , '[tex]/ams' ]
3156} ;
3257
3358export const paths = {
3459 tex : '[mathjax]/input/tex/extensions' ,
60+ mml : '[mathjax]/input/mml/extensions' ,
3561 sre : '[mathjax]/sre/' + ( typeof window === 'undefined' ? 'sre-node' : 'sre_browser' )
3662} ;
3763
@@ -44,21 +70,28 @@ const allPackages = [
4470 '[tex]/braket' ,
4571 '[tex]/bussproofs' ,
4672 '[tex]/cancel' ,
73+ '[tex]/centernot' ,
4774 '[tex]/color' ,
75+ '[tex]/colortbl' ,
4876 '[tex]/configmacros' ,
4977 '[tex]/enclose' ,
5078 '[tex]/extpfeil' ,
5179 '[tex]/html' ,
80+ '[tex]/mathtools' ,
5281 '[tex]/mhchem' ,
5382 '[tex]/newcommand' ,
5483 '[tex]/noerrors' ,
5584 '[tex]/noundefined' ,
5685 '[tex]/physics' ,
5786 '[tex]/require' ,
87+ '[tex]/setoptions' ,
5888 '[tex]/tagformat' ,
89+ '[tex]/textcomp' ,
5990 '[tex]/textmacros' ,
6091 '[tex]/unicode' ,
61- '[tex]/verb'
92+ '[tex]/verb' ,
93+ '[tex]/cases' ,
94+ '[tex]/empheq'
6295] ;
6396
6497export const provides = {
0 commit comments