File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
28
28
MathJax . InputJax . TeX = MathJax . InputJax ( {
29
29
id : "TeX" ,
30
- version : "2.2" ,
30
+ version : "2.2.1 " ,
31
31
directory : MathJax . InputJax . directory + "/TeX" ,
32
32
extensionDir : MathJax . InputJax . extensionDir + "/TeX" ,
33
33
Original file line number Diff line number Diff line change 2127
2127
mfenced : function ( open , mml , close ) {
2128
2128
var mrow = MML . mrow ( ) ;
2129
2129
mrow . open = open ; mrow . close = close ;
2130
- if ( open ) { mrow . Append ( MML . mo ( open ) . With ( { fence :true , texClass :MML . TEXCLASS . OPEN } ) ) }
2130
+ if ( open ) { mrow . Append ( MML . mo ( open ) . With ( { fence :true , stretchy : true , texClass :MML . TEXCLASS . OPEN } ) ) }
2131
2131
if ( mml . type === "mrow" ) { mrow . Append . apply ( mrow , mml . data ) } else { mrow . Append ( mml ) }
2132
- if ( close ) { mrow . Append ( MML . mo ( close ) . With ( { fence :true , texClass :MML . TEXCLASS . CLOSE } ) ) }
2132
+ if ( close ) { mrow . Append ( MML . mo ( close ) . With ( { fence :true , stretchy : true , texClass :MML . TEXCLASS . CLOSE } ) ) }
2133
2133
return mrow ;
2134
2134
} ,
2135
2135
You can’t perform that action at this time.
0 commit comments