Fix toCommonHTML() so stretch is passed as an option (prevents math processing error in fractions with line breaks)
This commit is contained in:
parent
ce6b7290d6
commit
470d97c494
|
@ -1706,12 +1706,12 @@
|
||||||
//
|
//
|
||||||
CHTMLstretchV: function (h,d) {
|
CHTMLstretchV: function (h,d) {
|
||||||
this.Core().CHTMLstretchV(h,d);
|
this.Core().CHTMLstretchV(h,d);
|
||||||
this.toCommonHTML(this.CHTMLnodeElement(),true);
|
this.toCommonHTML(this.CHTMLnodeElement(),{stretch:true});
|
||||||
return this.CHTML;
|
return this.CHTML;
|
||||||
},
|
},
|
||||||
CHTMLstretchH: function (node,w) {
|
CHTMLstretchH: function (node,w) {
|
||||||
this.CHTMLstretchCoreH(node,w);
|
this.CHTMLstretchCoreH(node,w);
|
||||||
this.toCommonHTML(node,true);
|
this.toCommonHTML(node,{stretch:true});
|
||||||
return this.CHTML;
|
return this.CHTML;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -2044,9 +2044,9 @@
|
||||||
/********************************************************/
|
/********************************************************/
|
||||||
|
|
||||||
MML.mpadded.Augment({
|
MML.mpadded.Augment({
|
||||||
toCommonHTML: function (node,stretch) {
|
toCommonHTML: function (node,options) {
|
||||||
var child;
|
var child;
|
||||||
if (stretch) {
|
if (options && options.stretch) {
|
||||||
node = node.firstChild; child = node.firstChild;
|
node = node.firstChild; child = node.firstChild;
|
||||||
} else {
|
} else {
|
||||||
node = this.CHTMLdefaultNode(node,{childNodes:"mjx-box", forceChild:true});
|
node = this.CHTMLdefaultNode(node,{childNodes:"mjx-box", forceChild:true});
|
||||||
|
@ -2101,7 +2101,7 @@
|
||||||
/********************************************************/
|
/********************************************************/
|
||||||
|
|
||||||
MML.munderover.Augment({
|
MML.munderover.Augment({
|
||||||
toCommonHTML: function (node,stretch) {
|
toCommonHTML: function (node,options) {
|
||||||
var values = this.getValues("displaystyle","accent","accentunder","align");
|
var values = this.getValues("displaystyle","accent","accentunder","align");
|
||||||
var base = this.data[this.base];
|
var base = this.data[this.base];
|
||||||
if (!values.displaystyle && base != null &&
|
if (!values.displaystyle && base != null &&
|
||||||
|
@ -2110,12 +2110,13 @@
|
||||||
//
|
//
|
||||||
// Get the nodes for base and limits
|
// Get the nodes for base and limits
|
||||||
//
|
//
|
||||||
var under, over, nodes = [];
|
var under, over, nodes = [], stretch = false;
|
||||||
if (stretch) {
|
if (options && options.stretch) {
|
||||||
if (this.data[this.base]) base = CHTML.getNode(node,"mjx-op");
|
if (this.data[this.base]) base = CHTML.getNode(node,"mjx-op");
|
||||||
if (this.data[this.under]) under = CHTML.getNode(node,"mjx-under");
|
if (this.data[this.under]) under = CHTML.getNode(node,"mjx-under");
|
||||||
if (this.data[this.over]) over = CHTML.getNode(node,"mjx-over");
|
if (this.data[this.over]) over = CHTML.getNode(node,"mjx-over");
|
||||||
nodes[0] = base; nodes[1] = under||over; nodes[2] = over;
|
nodes[0] = base; nodes[1] = under||over; nodes[2] = over;
|
||||||
|
stretch = true;
|
||||||
} else {
|
} else {
|
||||||
var types = ["mjx-op","mjx-under","mjx-over"];
|
var types = ["mjx-op","mjx-under","mjx-over"];
|
||||||
if (this.over === 1) types[1] = types[2];
|
if (this.over === 1) types[1] = types[2];
|
||||||
|
@ -2309,7 +2310,7 @@
|
||||||
/********************************************************/
|
/********************************************************/
|
||||||
|
|
||||||
MML.msubsup.Augment({
|
MML.msubsup.Augment({
|
||||||
toCommonHTML: function (node,stretch) {
|
toCommonHTML: function (node,options) {
|
||||||
var values = this.getValues(
|
var values = this.getValues(
|
||||||
"displaystyle","subscriptshift","superscriptshift","texprimestyle"
|
"displaystyle","subscriptshift","superscriptshift","texprimestyle"
|
||||||
);
|
);
|
||||||
|
@ -2317,7 +2318,7 @@
|
||||||
// Get the nodes for base and limits
|
// Get the nodes for base and limits
|
||||||
//
|
//
|
||||||
var base, sub, sup;
|
var base, sub, sup;
|
||||||
if (stretch) {
|
if (options && options.stretch) {
|
||||||
if (this.data[this.base]) base = CHTML.getNode(node,"mjx-base");
|
if (this.data[this.base]) base = CHTML.getNode(node,"mjx-base");
|
||||||
if (this.data[this.sub]) sub = CHTML.getNode(node,"mjx-sub");
|
if (this.data[this.sub]) sub = CHTML.getNode(node,"mjx-sub");
|
||||||
if (this.data[this.sup]) sup = CHTML.getNode(node,"mjx-sup");
|
if (this.data[this.sup]) sup = CHTML.getNode(node,"mjx-sup");
|
||||||
|
@ -2655,8 +2656,8 @@
|
||||||
/********************************************************/
|
/********************************************************/
|
||||||
|
|
||||||
MML.TeXAtom.Augment({
|
MML.TeXAtom.Augment({
|
||||||
toCommonHTML: function (node,stretch) {
|
toCommonHTML: function (node,options) {
|
||||||
if (!stretch) node = this.CHTMLdefaultNode(node);
|
if (!options || !options.stretch) node = this.CHTMLdefaultNode(node);
|
||||||
if (this.texClass === MML.TEXCLASS.VCENTER) {
|
if (this.texClass === MML.TEXCLASS.VCENTER) {
|
||||||
var a = CHTML.TEX.axis_height, BBOX = this.CHTML;
|
var a = CHTML.TEX.axis_height, BBOX = this.CHTML;
|
||||||
var v = a-(BBOX.h+BBOX.d)/2+BBOX.d;
|
var v = a-(BBOX.h+BBOX.d)/2+BBOX.d;
|
||||||
|
@ -2669,12 +2670,12 @@
|
||||||
},
|
},
|
||||||
CHTMLstretchV: function (h,d) {
|
CHTMLstretchV: function (h,d) {
|
||||||
this.CHTML.updateFrom(this.Core().CHTMLstretchV(h,d));
|
this.CHTML.updateFrom(this.Core().CHTMLstretchV(h,d));
|
||||||
this.toCommonHTML(this.CHTMLnodeElement(),true);
|
this.toCommonHTML(this.CHTMLnodeElement(),{stretch:true});
|
||||||
return this.CHTML;
|
return this.CHTML;
|
||||||
},
|
},
|
||||||
CHTMLstretchH: function (node,w) {
|
CHTMLstretchH: function (node,w) {
|
||||||
this.CHTML.updateFrom(this.CHTMLstretchCoreH(node,w));
|
this.CHTML.updateFrom(this.CHTMLstretchCoreH(node,w));
|
||||||
this.toCommonHTML(node,true);
|
this.toCommonHTML(node,{stretch:true});
|
||||||
return this.CHTML;
|
return this.CHTML;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user