From 93fd3bfa64683a74326ac689f1ab526d6c881f79 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Fri, 16 Jan 2015 10:06:41 -0500 Subject: [PATCH] Fix incorrect code for tab. --- unpacked/extensions/toMathML.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpacked/extensions/toMathML.js b/unpacked/extensions/toMathML.js index b32fcb6a2..40403d78b 100644 --- a/unpacked/extensions/toMathML.js +++ b/unpacked/extensions/toMathML.js @@ -109,7 +109,7 @@ MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function () { if (n <= 0xD7FF || 0xE000 <= n) { // Code points U+0000 to U+D7FF and U+E000 to U+FFFF. // They are directly represented by n. - if (n > 0x7E || (n < 0x20 && n !== 0x0A && n !== 0x0D && n !== 0x08)) { + if (n > 0x7E || (n < 0x20 && n !== 0x0A && n !== 0x0D && n !== 0x09)) { string[i] = "&#x"+n.toString(16).toUpperCase()+";"; } else { var c =