Skip to content

Commit 55ed20a

Browse files
committed
Don't switch to MathML spacing for explict form attributes, but adjust BIN01 to be ORD (nearly the same effect). Resolves issue #1997.
1 parent c4eca32 commit 55ed20a

File tree

1 file changed

+2
-2
lines changed
  • unpacked/jax/element/mml

1 file changed

+2
-2
lines changed

unpacked/jax/element/mml/jax.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ MathJax.ElementJax.mml.Augment({
560560
texClass: MML.TEXCLASS.REL // for MML, but TeX sets ORD explicitly
561561
},
562562
SPACE_ATTR: {lspace: 0x01, rspace: 0x02, form: 0x04},
563-
useMMLspacing: 0x07,
563+
useMMLspacing: 0x03,
564564
autoDefault: function (name,nodefault) {
565565
var def = this.def;
566566
if (!def) {
@@ -1492,7 +1492,7 @@ MathJax.ElementJax.mml.Augment({
14921492
INTEGRAL2: [1,2,TEXCLASS.OP,{largeop: true, symmetric: true}],
14931493
BIN3: [3,3,TEXCLASS.BIN],
14941494
BIN4: [4,4,TEXCLASS.BIN],
1495-
BIN01: [0,1,TEXCLASS.BIN],
1495+
BIN01: [0,1,TEXCLASS.ORD],
14961496
BIN5: [5,5,TEXCLASS.BIN],
14971497
TALLBIN: [4,4,TEXCLASS.BIN,{stretchy: true}],
14981498
BINOP: [4,4,TEXCLASS.BIN,{largeop: true, movablelimits: true}],

0 commit comments

Comments
 (0)