Implement toCommonHTML for \mathchoice. Resolves issue #998.
This commit is contained in:
parent
debd0c88b6
commit
e4265d3969
|
@ -79,6 +79,13 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
|
||||||
var svg = this.Core().toSVG();
|
var svg = this.Core().toSVG();
|
||||||
this.SVGsaveData(svg);
|
this.SVGsaveData(svg);
|
||||||
return svg;
|
return svg;
|
||||||
|
},
|
||||||
|
toCommonHTML: function (span) {
|
||||||
|
span = this.CHTMLcreateSpan(span);
|
||||||
|
this.CHTMLhandleStyle(span);
|
||||||
|
this.CHTMLhandleColor(span);
|
||||||
|
this.CHTMLaddChild(span,this.choice(),{});
|
||||||
|
return span;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user