diff options
Diffstat (limited to 'src/util/replacer.js')
-rw-r--r-- | src/util/replacer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/replacer.js b/src/util/replacer.js index 0ce3607d..678933f2 100644 --- a/src/util/replacer.js +++ b/src/util/replacer.js @@ -428,7 +428,7 @@ export function squashBackslashes(text) { // a set of characters where the backslash carries meaning // into later formatting (i.e. markdown). Note that we do // NOT compress double backslashes into single backslashes. - return text.replace(/([^\\](?:\\{2})*)\\(?![\\*_-~])/g, '$1'); + return text.replace(/([^\\](?:\\{2})*)\\(?![\\*_~-])/g, '$1'); } export function restoreRawHTMLTags(text) { |