Skip to content

Commit

Permalink
Merge pull request #57 from minrk/no-escape
Browse files Browse the repository at this point in the history
prepare for mistune changes
  • Loading branch information
takluyver committed Jul 11, 2015
2 parents d27bc96 + 8a1a9ae commit f4df398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nbconvert/filters/markdown_mistune.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ def inline_math(self, text):

def markdown2html_mistune(source):
"""Convert a markdown string to HTML using mistune"""
return MarkdownWithMath(renderer=IPythonRenderer()).render(source)
return MarkdownWithMath(renderer=IPythonRenderer(escape=False)).render(source)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def run(self):

setuptools_args = {}
install_requires = setuptools_args['install_requires'] = [
'mistune',
'mistune!=0.6',
'jinja2',
'pygments',
'traitlets',
Expand Down

0 comments on commit f4df398

Please sign in to comment.