Skip to content

Commit 93fd3bf

Browse files
committed
Fix incorrect code for tab.
1 parent 0df957f commit 93fd3bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unpacked/extensions/toMathML.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function () {
109109
if (n <= 0xD7FF || 0xE000 <= n) {
110110
// Code points U+0000 to U+D7FF and U+E000 to U+FFFF.
111111
// They are directly represented by n.
112-
if (n > 0x7E || (n < 0x20 && n !== 0x0A && n !== 0x0D && n !== 0x08)) {
112+
if (n > 0x7E || (n < 0x20 && n !== 0x0A && n !== 0x0D && n !== 0x09)) {
113113
string[i] = "&#x"+n.toString(16).toUpperCase()+";";
114114
} else {
115115
var c =

0 commit comments

Comments
 (0)