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
1 changed files with 1 additions and 1 deletions

View File

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