We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c51621 commit f067eccCopy full SHA for f067ecc
unpacked/jax/input/TeX/jax.js
@@ -2210,9 +2210,11 @@
2210
*/
2211
fenced: function (open,mml,close) {
2212
var mrow = MML.mrow().With({open:open, close:close, texClass:MML.TEXCLASS.INNER});
2213
- mrow.Append(MML.mo(open).With({fence:true, stretchy:true, texClass:MML.TEXCLASS.OPEN}));
2214
- if (mml.type === "mrow") {mrow.Append.apply(mrow,mml.data)} else {mrow.Append(mml)}
2215
- mrow.Append(MML.mo(close).With({fence:true, stretchy:true, texClass:MML.TEXCLASS.CLOSE}));
+ mrow.Append(
+ MML.mo(open).With({fence:true, stretchy:true, texClass:MML.TEXCLASS.OPEN}),
+ mml,
2216
+ MML.mo(close).With({fence:true, stretchy:true, texClass:MML.TEXCLASS.CLOSE})
2217
+ );
2218
return mrow;
2219
},
2220
/*
0 commit comments