Allows blockquote markdown

This commit is contained in:
Mouse Reeve 2021-01-29 08:00:19 -08:00
parent 5e885e7bda
commit 68d00d590c

View file

@ -7,7 +7,7 @@ class InputHtmlParser(HTMLParser):#pylint: disable=abstract-method
def __init__(self):
HTMLParser.__init__(self)
self.allowed_tags = [
'p', 'br',
'p', 'blockquote', 'br',
'b', 'i', 'strong', 'em', 'pre',
'a', 'span', 'ul', 'ol', 'li'
]