mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 01:51:08 +00:00
parent
a8ea3c08c9
commit
ec45f8d565
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ class InputHtmlParser(HTMLParser):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
HTMLParser.__init__(self)
|
HTMLParser.__init__(self)
|
||||||
self.whitelist = ['p', 'b', 'i', 'pre']
|
self.whitelist = ['p', 'b', 'i', 'pre', 'a', 'span']
|
||||||
self.tag_stack = []
|
self.tag_stack = []
|
||||||
self.output = []
|
self.output = []
|
||||||
# if the html appears invalid, we just won't allow any at all
|
# if the html appears invalid, we just won't allow any at all
|
||||||
|
@ -16,7 +16,7 @@ class InputHtmlParser(HTMLParser):
|
||||||
def handle_starttag(self, tag, attrs):
|
def handle_starttag(self, tag, attrs):
|
||||||
''' check if the tag is valid '''
|
''' check if the tag is valid '''
|
||||||
if self.allow_html and tag in self.whitelist:
|
if self.allow_html and tag in self.whitelist:
|
||||||
self.output.append(('tag', '<%s>' % tag))
|
self.output.append(('tag', self.get_starttag_text()))
|
||||||
self.tag_stack.append(tag)
|
self.tag_stack.append(tag)
|
||||||
else:
|
else:
|
||||||
self.output.append(('data', ' '))
|
self.output.append(('data', ' '))
|
||||||
|
|
Loading…
Reference in a new issue