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