This commit is contained in:
Kovid Goyal 2021-05-17 17:47:47 +05:30
parent 9f1d9a9781
commit 8436c14f89
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -12,7 +12,7 @@ UNHANDLED_ERROR = 3
DB_ERROR = 4 DB_ERROR = 4
_RE_ESCAPE = /[-\/\\^$*+?.()|[\]{}]/g _RE_ESCAPE = /[-\/\\^$*+?.()|[\]{}]/g
quote_map= {'"':'"“”', "'": "'"} quote_map = {'"': '"“”', "'": "'"}
qpat = /(['"])/g qpat = /(['"])/g
spat = /(\s+)/g spat = /(\s+)/g
invisible_chars = '(?:[\u00ad\u200c\u200d]{0,1})' invisible_chars = '(?:[\u00ad\u200c\u200d]{0,1})'