forked from rDrama/rDrama
1
0
Fork 0

improvement since ) is optional if its the last characters

master
Aevann 2023-09-07 21:32:43 +03:00
parent 6ee03f143b
commit 74b60a1854
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ twitch_regex = re.compile('(https:\/\/)?(www\.)?twitch.tv\/(.*)', flags=re.I|re.
link_fix_regex = re.compile("(\[.*?\]\()(?!http|\/)(.*?\))" + NOT_IN_CODE_OR_LINKS, flags=re.A)
css_url_regex = re.compile('url\(((.|\n)*?)\)', flags=re.I|re.A)
css_url_regex = re.compile('url\(((.|\n)*?)(\)|$)', flags=re.I|re.A)
linefeeds_regex = re.compile("([^\n])\n([^\n])", flags=re.A)