forked from rDrama/rDrama
1
0
Fork 0

Revert "improve fishylinks_regex"

This reverts commit 88c1f1b233.
master
Aevann1 2022-10-05 00:19:50 +02:00
parent 4c71bd6b5c
commit 243cf4eaf8
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ based_regex = re.compile("based and (.{1,20}?)(-| )pilled", flags=re.I|re.A)
controversial_regex = re.compile('["> ](https:\/\/old\.reddit\.com/r/[a-zA-Z0-9_]{3,20}\/comments\/[\w\-.#&/=\?@%+]{5,250})["< ]', flags=re.A)
fishylinks_regex = re.compile("https?[:։]\/\/\S+", flags=re.A)
fishylinks_regex = re.compile("https?://\S+", flags=re.A)
spoiler_regex = re.compile('''\|\|(.+)\|\|''', flags=re.A)
reddit_regex = re.compile('(^|\s|<p>)\/?((r|u)\/(\w|-){3,25})(?![^<]*<\/(code|pre|a)>)', flags=re.A)