www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1b6393cb3dbac6bcc7719cb02d9fb05e4d0b0fc1
parent a406adcb4d164e19d2a89c8879c9eb66dfbb6cce
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Wed, 11 Mar 2015 20:34:47 -0400

Handle rfix in fontdata (won't be necessary if the fonts are rebuilt, but need it for now), fix spaces so that they are relative to the correct font, and make sure they come after any pending text.

Diffstat:
Munpacked/jax/output/CommonHTML/jax.js | 26+++++++++++++++++++-------
1 file changed, 19 insertions(+), 7 deletions(-)

diff --git a/unpacked/jax/output/CommonHTML/jax.js b/unpacked/jax/output/CommonHTML/jax.js @@ -506,7 +506,7 @@ + String.fromCharCode((N&0x3FF)+0xDC00); } } - if (C[5].space) return {type:"space", w:C[2]}; + if (C[5].space) return {type:"space", w:C[2], font:font}; return {type:"char", font:font, n:n}; } // else load block files? } @@ -537,21 +537,33 @@ if (bbox.r < bbox.w+C[4]) bbox.r = bbox.w+C[4]; bbox.w += C[2]; if (m == 1 && font.skew && font.skew[item.n]) bbox.skew = font.skew[item.n]; + if (C[5].rfix) { + HTML.addElement(node,"span",{ + className:className, style:{"margin-right":CHTML.Em(C[5].rfix/1000)} + },[text]); + text = ""; className = null; + } break; case "space": if (item.w) { - HTML.addElement(node,"mjx-space",{style:{"margin-left":CHTML.Em(item.w)}}); + if (text === "") className = item.font.className; + HTML.addElement(node,"span",{ + className:className, style:{"margin-right":CHTML.Em(item.w)} + },[text]); + text = ""; className = null; bbox.w += item.w; } break; } } - if (node.childNodes.length) { - HTML.addElement(node,"span",{className:className},[text]); - } else { - HTML.addText(node,text); - node.className = className; + if (text !== "") { + if (node.childNodes.length) { + HTML.addElement(node,"span",{className:className},[text]); + } else { + HTML.addText(node,text); + node.className = className; + } } },