We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1aaecb commit 4433623Copy full SHA for 4433623
1 file changed
main/utils.py
@@ -108,9 +108,9 @@ def extendMarkdown(self, md):
108
109
def parse_markdown(text, allow_html=False):
110
if allow_html:
111
- return markdown.markdown(text, enable_attributes=False)
+ return markdown.markdown(text)
112
ext = [EscapeHtml()]
113
- return markdown.markdown(text, extensions=ext, enable_attributes=False)
+ return markdown.markdown(text, extensions=ext)
114
115
116
def groupby_preserve_order(iterable, keyfunc):
0 commit comments