Encoding corrected to match a hash (#285)

This commit is contained in:
nobody 2021-02-28 18:20:20 +01:00
parent e29f1165aa
commit c8fd5995f6
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@
var trailing_punctuation_improved = ['.', ',', ':', ';', '.)'];
var wrapping_punctuation_django = [['(', ')'], ['<', '>'], ['&lt;', '&gt;']];
var wrapping_punctuation_improved = [['(', ')'], ['<', '>'], ['&lt;', '&gt;'],
['\u201c', '\u201d'], ['\u2018', '\u2019']];
['“', '”'], ['', '']];
var word_split_re_django = /(\s+)/;
var word_split_re_improved = /([\s<>"]+)/;
var simple_url_re = /^https?:\/\/\w/i;