Skip to content

Commit ced45f9

Browse files
authored
Merge branch 'develop' into mathtools-update
2 parents 88fed2f + 3e2c672 commit ced45f9

102 files changed

Lines changed: 3124 additions & 2274 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

components/src/dependencies.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export const dependencies = {
22
'a11y/semantic-enrich': ['input/mml', '[sre]'],
33
'a11y/complexity': ['a11y/semantic-enrich'],
44
'a11y/explorer': ['a11y/semantic-enrich', 'ui/menu'],
5+
'[mml]/mml3': ['input/mml'],
56
'[tex]/all-packages': ['input/tex-base'],
67
'[tex]/action': ['input/tex-base', '[tex]/newcommand'],
78
'[tex]/autoload': ['input/tex-base', '[tex]/require'],
@@ -12,8 +13,10 @@ export const dependencies = {
1213
'[tex]/braket': ['input/tex-base'],
1314
'[tex]/bussproofs': ['input/tex-base'],
1415
'[tex]/cancel': ['input/tex-base', '[tex]/enclose'],
16+
'[tex]/centernot': ['input/tex-base'],
1517
'[tex]/color': ['input/tex-base'],
1618
'[tex]/colorv2': ['input/tex-base'],
19+
'[tex]/colortbl': ['input/tex-base', '[tex]/color'],
1720
'[tex]/configmacros': ['input/tex-base', '[tex]/newcommand'],
1821
'[tex]/enclose': ['input/tex-base'],
1922
'[tex]/extpfeil': ['input/tex-base', '[tex]/newcommand', '[tex]/ams'],
@@ -25,6 +28,7 @@ export const dependencies = {
2528
'[tex]/noundefined': ['input/tex-base'],
2629
'[tex]/physics': ['input/tex-base'],
2730
'[tex]/require': ['input/tex-base'],
31+
'[tex]/setoptions': ['input/tex-base'],
2832
'[tex]/tagformat': ['input/tex-base'],
2933
'[tex]/textmacros': ['input/tex-base'],
3034
'[tex]/unicode': ['input/tex-base'],
@@ -33,6 +37,7 @@ export const dependencies = {
3337

3438
export const paths = {
3539
tex: '[mathjax]/input/tex/extensions',
40+
mml: '[mathjax]/input/mml/extensions',
3641
sre: '[mathjax]/sre/' + (typeof window === 'undefined' ? 'sre-node' : 'sre_browser')
3742
};
3843

@@ -45,7 +50,9 @@ const allPackages = [
4550
'[tex]/braket',
4651
'[tex]/bussproofs',
4752
'[tex]/cancel',
53+
'[tex]/centernot',
4854
'[tex]/color',
55+
'[tex]/colortbl',
4956
'[tex]/configmacros',
5057
'[tex]/enclose',
5158
'[tex]/extpfeil',
@@ -57,6 +64,7 @@ const allPackages = [
5764
'[tex]/noundefined',
5865
'[tex]/physics',
5966
'[tex]/require',
67+
'[tex]/setoptions',
6068
'[tex]/tagformat',
6169
'[tex]/textmacros',
6270
'[tex]/unicode',
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"component": "input/mml/extensions/mml3",
3+
"targets": ["input/mathml/mml3"]
4+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"to": "../../../../../../es5/input/mml/extensions",
3+
"from": "../../../../../../ts/input/mathml/mml3",
4+
"copy": [
5+
"mml3.sef.json"
6+
]
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import './lib/mml3.js';
2+
3+
import {Mml3Handler} from '../../../../../../js/input/mathml/mml3/mml3.js';
4+
5+
if (MathJax.startup) {
6+
MathJax.startup.extendHandler(handler => Mml3Handler(handler));
7+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const PACKAGE = require('../../../../../webpack.common.js');
2+
3+
module.exports = PACKAGE(
4+
'input/mml/extensions/mml3', // the package to build
5+
'../../../../../../js', // location of the MathJax js library
6+
[ // packages to link to
7+
'components/src/input/mml/lib',
8+
'components/src/core/lib'
9+
],
10+
__dirname // our directory
11+
);
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"component": "input/tex/extensions/centernot",
3+
"targets": ["input/tex/centernot"]
4+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import './lib/centernot.js';
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const PACKAGE = require('../../../../../webpack.common.js');
2+
3+
module.exports = PACKAGE(
4+
'input/tex/extensions/centernot', // the package to build
5+
'../../../../../../js', // location of the MathJax js library
6+
[ // packages to link to
7+
'components/src/input/tex-base/lib',
8+
'components/src/core/lib'
9+
],
10+
__dirname // our directory
11+
);
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"component": "input/tex/extensions/colortbl",
3+
"targets": ["input/tex/colortbl"]
4+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import './lib/colortbl.js';

0 commit comments

Comments
 (0)