From 8fb4157eb11e476e675486e8ac9d1a1a4074ce15 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Mon, 10 Feb 2014 09:34:59 -0500 Subject: [PATCH] Make U+00A0 act as space in math mode. Resolves issue #377. --- unpacked/jax/input/TeX/jax.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unpacked/jax/input/TeX/jax.js b/unpacked/jax/input/TeX/jax.js index f0b85ae77..85714592b 100644 --- a/unpacked/jax/input/TeX/jax.js +++ b/unpacked/jax/input/TeX/jax.js @@ -424,6 +424,7 @@ '%': 'Comment', '&': 'Entry', '#': 'Hash', + '\u00A0': 'Space', '\u2019': 'Prime' }, @@ -946,6 +947,7 @@ not: 'Not', dots: 'Dots', space: 'Tilde', + '\u00A0': 'Tilde', // LaTeX @@ -1807,7 +1809,7 @@ * Check if the next character is a space */ nextIsSpace: function () { - return this.string.charAt(this.i).match(/[ \n\r\t]/); + return this.string.charAt(this.i).match(/\s/); }, /*