1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-09-28 23:23:04 +00:00

mark regex strings as raw

This commit is contained in:
Lynne Megido 2019-09-21 15:10:40 +10:00
parent eb5e8977c2
commit 7ad540777a

View file

@ -29,8 +29,8 @@ def extract_post(post):
link.decompose() link.decompose()
text = soup.get_text() text = soup.get_text()
text = re.sub("https://([^/]+)/(@[^\s]+)", r"\2@\1", text) # put mastodon-style mentions back in text = re.sub(r"https://([^/]+)/(@[^\s]+)", r"\2@\1", text) # put mastodon-style mentions back in
text = re.sub("https://([^/]+)/users/([^\s/]+)", r"@\2@\1", text) # put pleroma-style mentions back in text = re.sub(r"https://([^/]+)/users/([^\s/]+)", r"@\2@\1", text) # put pleroma-style mentions back in
text = text.rstrip("\n") # remove trailing newline(s) text = text.rstrip("\n") # remove trailing newline(s)
return text return text