rewrite regex nonsense (#345)

remotes/1693045480750635534/spooky-22
official-techsupport 2022-08-31 01:40:15 +03:00 committed by GitHub
parent 36c3cd60e8
commit 643ea8b429
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ reddit_domain_regex = re.compile("(^|\s|\()https?:\/\/(reddit\.com|new\.reddit.c
color_regex = re.compile("[a-z0-9]{6}", flags=re.A)
# lazy match on the {}?, only match if there is trailing stuff
showmore_regex = re.compile(r"^(.{3000,}?</p>)(\s*.+)", flags=re.A|re.DOTALL)
showmore_regex = re.compile(r"^(.{3000,}?</p>)(\s*\S.*)", flags=re.A|re.DOTALL)
search_token_regex = re.compile('"([^"]*)"|(\S+)', flags=re.A)