mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-27 12:01:14 +00:00
Merge pull request #566 from mouse-reeve/blockquote
Allows blockquote markdown
This commit is contained in:
commit
65db2e63ac
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue