diff --git a/dist/showdown.js b/dist/showdown.js index 13815ee..33bfef9 100644 Binary files a/dist/showdown.js and b/dist/showdown.js differ diff --git a/dist/showdown.js.map b/dist/showdown.js.map index 22a1d9b..57600ff 100644 Binary files a/dist/showdown.js.map and b/dist/showdown.js.map differ diff --git a/dist/showdown.min.js b/dist/showdown.min.js index 9bdb929..e9a28a8 100644 Binary files a/dist/showdown.min.js and b/dist/showdown.min.js differ diff --git a/dist/showdown.min.js.map b/dist/showdown.min.js.map index d5fec91..7f3d56c 100644 Binary files a/dist/showdown.min.js.map and b/dist/showdown.min.js.map differ diff --git a/src/converter.js b/src/converter.js index 7776c4a..4d2b419 100644 --- a/src/converter.js +++ b/src/converter.js @@ -287,8 +287,8 @@ showdown.Converter = function (converterOptions) { text = text.replace(/\r\n/g, '\n'); // DOS to Unix text = text.replace(/\r/g, '\n'); // Mac to Unix - // Stardardize line spaces (nbsp causes trouble in older browsers and some regex flavors) - text = text.replace(/\u00A0/g, ' '); + // Stardardize line spaces + text = text.replace(/\u00A0/g, ' '); if (options.smartIndentationFix) { text = rTrimInputText(text);