Merge pull request #566 from mouse-reeve/blockquote

Allows blockquote markdown
This commit is contained in:
Mouse Reeve 2021-01-29 08:18:05 -08:00 committed by GitHub
commit 65db2e63ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'
]