markdown.py
107 lines
| 3.2 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r10676 | """Markdown filters | ||
This file contains a collection of utility filters for dealing with | ||||
markdown within Jinja templates. | ||||
Jonathan Frederic
|
r10436 | """ | ||
#----------------------------------------------------------------------------- | ||||
# Copyright (c) 2013, the IPython Development Team. | ||||
# | ||||
# Distributed under the terms of the Modified BSD License. | ||||
# | ||||
# The full license is in the file COPYING.txt, distributed with this software. | ||||
#----------------------------------------------------------------------------- | ||||
#----------------------------------------------------------------------------- | ||||
# Imports | ||||
#----------------------------------------------------------------------------- | ||||
from __future__ import print_function | ||||
# Stdlib imports | ||||
MinRK
|
r14206 | import os | ||
Jonathan Frederic
|
r10436 | import subprocess | ||
MinRK
|
r14203 | from io import TextIOWrapper, BytesIO | ||
Jonathan Frederic
|
r10436 | |||
MinRK
|
r14203 | # IPython imports | ||
MinRK
|
r11268 | from IPython.nbconvert.utils.pandoc import pandoc | ||
MinRK
|
r14203 | from IPython.nbconvert.utils.exceptions import ConversionException | ||
from IPython.utils.process import find_cmd, FindCmdError | ||||
from IPython.utils.py3compat import cast_bytes | ||||
MinRK
|
r11268 | |||
Jonathan Frederic
|
r10436 | #----------------------------------------------------------------------------- | ||
# Functions | ||||
#----------------------------------------------------------------------------- | ||||
MinRK
|
r14206 | marked = os.path.join(os.path.dirname(__file__), "marked.js") | ||
Jonathan Frederic
|
r10485 | |||
Brian E. Granger
|
r11088 | __all__ = [ | ||
MinRK
|
r11268 | 'markdown2html', | ||
MinRK
|
r14203 | 'markdown2html_pandoc', | ||
'markdown2html_marked', | ||||
Brian E. Granger
|
r11088 | 'markdown2latex', | ||
MinRK
|
r14203 | 'markdown2rst', | ||
Brian E. Granger
|
r11088 | ] | ||
MinRK
|
r14206 | class NodeJSMissing(ConversionException): | ||
"""Exception raised when node.js is missing.""" | ||||
MinRK
|
r14203 | pass | ||
Jonathan Frederic
|
r10676 | def markdown2latex(source): | ||
Jonathan Frederic
|
r10436 | """Convert a markdown string to LaTeX via pandoc. | ||
This function will raise an error if pandoc is not installed. | ||||
Any error messages generated by pandoc are printed to stderr. | ||||
Parameters | ||||
---------- | ||||
Jonathan Frederic
|
r10676 | source : string | ||
Jonathan Frederic
|
r10436 | Input string, assumed to be valid markdown. | ||
Returns | ||||
------- | ||||
out : string | ||||
Output as returned by pandoc. | ||||
""" | ||||
MinRK
|
r11268 | return pandoc(source, 'markdown', 'latex') | ||
Jonathan Frederic
|
r10436 | |||
MinRK
|
r14203 | def markdown2html_pandoc(source): | ||
MinRK
|
r11268 | """Convert a markdown string to HTML via pandoc""" | ||
MinRK
|
r11294 | return pandoc(source, 'markdown', 'html', extra_args=['--mathjax']) | ||
MinRK
|
r11268 | |||
MinRK
|
r14203 | def markdown2html_marked(source, encoding='utf-8'): | ||
"""Convert a markdown string to HTML via marked""" | ||||
MinRK
|
r14206 | command = ['node', marked] | ||
MinRK
|
r14203 | try: | ||
p = subprocess.Popen(command, | ||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE | ||||
) | ||||
except OSError as e: | ||||
MinRK
|
r14206 | raise NodeJSMissing( | ||
MinRK
|
r14203 | "The command '%s' returned an error: %s.\n" % (" ".join(command), e) + | ||
MinRK
|
r14206 | "Please check that Node.js is installed." | ||
MinRK
|
r14203 | ) | ||
out, _ = p.communicate(cast_bytes(source, encoding)) | ||||
out = TextIOWrapper(BytesIO(out), encoding, 'replace').read() | ||||
return out.rstrip('\n') | ||||
Jonathan Frederic
|
r10676 | def markdown2rst(source): | ||
Jonathan Frederic
|
r10436 | """Convert a markdown string to LaTeX via pandoc. | ||
This function will raise an error if pandoc is not installed. | ||||
Any error messages generated by pandoc are printed to stderr. | ||||
Parameters | ||||
---------- | ||||
Jonathan Frederic
|
r10676 | source : string | ||
Jonathan Frederic
|
r10436 | Input string, assumed to be valid markdown. | ||
Returns | ||||
------- | ||||
out : string | ||||
Output as returned by pandoc. | ||||
""" | ||||
MinRK
|
r11268 | return pandoc(source, 'markdown', 'rst') | ||
MinRK
|
r14203 | try: | ||
MinRK
|
r14206 | find_cmd('node') | ||
MinRK
|
r14203 | except FindCmdError: | ||
markdown2html = markdown2html_pandoc | ||||
else: | ||||
markdown2html = markdown2html_marked | ||||