Skip to content

Commit

Permalink
Update emarkdown.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Gabard committed Feb 24, 2015
1 parent 480eb5a commit 8f53d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zds/utils/templatetags/emarkdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_markdown_instance(inline=False, js_support=False):
:param bool inline: If `True`, configure parser to parse only inline content.
:return: A ZMarkdown parser.
"""
zdsext = ZdsExtension({'inline': inline, 'emoticons': smileys, 'js_support': js_support})
zdsext = ZdsExtension(inline=inline, emoticons=smileys, js_support=js_support)
# Generate parser
md = Markdown(
extensions=(zdsext,),
Expand Down

0 comments on commit 8f53d82

Please sign in to comment.