Skip to content

Commit

Permalink
Now escaping raw html in comments instead of stripping it.
Browse files Browse the repository at this point in the history
  • Loading branch information
lethain committed Jul 9, 2008
1 parent b25dcd4 commit d89b3ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text_filters.py
Expand Up @@ -49,7 +49,7 @@ def entry_markup(txt,obj=None):

def comment_markdown(txt,obj=None):
exts = (mdx_code,)
md = Markdown(txt,extensions=exts,safe_mode=True)
md = Markdown(txt,extensions=exts,safe_mode="escape")
return md.convert()


Expand Down

0 comments on commit d89b3ee

Please sign in to comment.