Handles query params in urls

This commit is contained in:
Mouse Reeve
2021-01-06 11:36:28 -08:00
parent 9e07f094ad
commit 6638c9bb44
2 changed files with 8 additions and 1 deletions

View File

@ -296,7 +296,8 @@ def find_mentions(content):
def format_links(content):
''' detect and format links '''
return re.sub(
r'([^(href=")]|^)(https?:\/\/(%s([\w\.\-_\/])*))' % regex.domain,
r'([^(href=")]|^)(https?:\/\/(%s([\w\.\-_\/+&\?=:;,])*))' % \
regex.domain,
r'\g<1><a href="\g<2>">\g<3></a>',
content)