mirror of
https://gitlab.com/brutaldon/brutaldon.git
synced 2024-12-04 14:46:24 -05:00
Work around bug(?) in BeautifulSoup entity handling
This commit is contained in:
parent
dc5d5f4176
commit
3390266b29
@ -21,6 +21,7 @@ def relink_tags(value):
|
||||
|
||||
FIXME: handle arbitrary tag links
|
||||
'''
|
||||
value = value.replace(''', "'")
|
||||
soup = BeautifulSoup(value, 'html.parser')
|
||||
for link in soup.find_all('a', class_='hashtag'):
|
||||
link['href'] = reverse('tag', args=[link.span.string])
|
||||
@ -36,6 +37,7 @@ def relink_mentions(value):
|
||||
|
||||
FIXME: handle arbitrary mention links
|
||||
'''
|
||||
value = value.replace(''', "'")
|
||||
soup = BeautifulSoup(value, 'html.parser')
|
||||
for link in soup.find_all('a', class_='mention'):
|
||||
parsed = parse.urlparse(link['href'])
|
||||
|
Loading…
Reference in New Issue
Block a user