fix edge case + add warning for future me

pull/200/head
Aevann 2023-09-08 20:11:55 +03:00
parent a1dea631f7
commit 6a30528634
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) # AEVANN, DO NOT TOUCH THIS, IT WENT THROUGH A MILLION ITERATIONS, IT'S PERFECT NOW
linefeeds_regex = re.compile("([^\n])\n([^\n])", flags=re.A)