markdown.py
140 lines
| 4.1 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r10676 | """Markdown filters | ||
Thomas Kluyver
|
r17259 | |||
Jonathan Frederic
|
r10676 | This file contains a collection of utility filters for dealing with | ||
markdown within Jinja templates. | ||||
Jonathan Frederic
|
r10436 | """ | ||
Thomas Kluyver
|
r17259 | # Copyright (c) IPython Development Team. | ||
Jonathan Frederic
|
r10436 | # Distributed under the terms of the Modified BSD License. | ||
from __future__ import print_function | ||||
MinRK
|
r14206 | import os | ||
Jonathan Frederic
|
r10436 | import subprocess | ||
MinRK
|
r14203 | from io import TextIOWrapper, BytesIO | ||
Jonathan Frederic
|
r10436 | |||
Min RK
|
r20624 | try: | ||
from .markdown_mistune import markdown2html_mistune | ||||
except ImportError as e: | ||||
# store in variable for Python 3 | ||||
_mistune_import_error = e | ||||
def markdown2html_mistune(source): | ||||
"""mistune is unavailable, raise ImportError""" | ||||
raise ImportError("markdown2html requires mistune: %s" % _mistune_import_error) | ||||
Thomas Kluyver
|
r17247 | |||
MinRK
|
r11268 | from IPython.nbconvert.utils.pandoc import pandoc | ||
MinRK
|
r14203 | from IPython.nbconvert.utils.exceptions import ConversionException | ||
Jonathan Frederic
|
r15692 | from IPython.utils.process import get_output_error_code | ||
MinRK
|
r14203 | from IPython.utils.py3compat import cast_bytes | ||
Jonathan Frederic
|
r15692 | from IPython.utils.version import check_version | ||
MinRK
|
r11268 | |||
Thomas Kluyver
|
r17259 | |||
MinRK
|
r14206 | marked = os.path.join(os.path.dirname(__file__), "marked.js") | ||
Jonathan Frederic
|
r15697 | _node = None | ||
Jonathan Frederic
|
r10485 | |||
Brian E. Granger
|
r11088 | __all__ = [ | ||
MinRK
|
r11268 | 'markdown2html', | ||
MinRK
|
r14203 | 'markdown2html_pandoc', | ||
'markdown2html_marked', | ||||
Thomas Kluyver
|
r17247 | 'markdown2html_mistune', | ||
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 | ||
Min RK
|
r20624 | |||
Benjamin ABEL
|
r18427 | def markdown2latex(source, markup='markdown', extra_args=None): | ||
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. | ||
Benjamin ABEL
|
r18427 | markup : string | ||
Markup used by pandoc's reader | ||||
default : pandoc extended markdown | ||||
(see http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown) | ||||
Jonathan Frederic
|
r10436 | |||
Returns | ||||
------- | ||||
out : string | ||||
Output as returned by pandoc. | ||||
""" | ||||
Benjamin ABEL
|
r18427 | return pandoc(source, markup, 'latex', extra_args=extra_args) | ||
Jonathan Frederic
|
r10436 | |||
Thomas Kluyver
|
r17398 | |||
MinRK
|
r17885 | def markdown2html_pandoc(source, extra_args=None): | ||
MinRK
|
r11268 | """Convert a markdown string to HTML via pandoc""" | ||
MinRK
|
r17885 | extra_args = extra_args or ['--mathjax'] | ||
return pandoc(source, 'markdown', 'html', extra_args=extra_args) | ||||
MinRK
|
r11268 | |||
Min RK
|
r20624 | |||
Thomas Kluyver
|
r17249 | def _find_nodejs(): | ||
global _node | ||||
if _node is None: | ||||
# prefer md2html via marked if node.js >= 0.9.12 is available | ||||
# node is called nodejs on debian, so try that first | ||||
_node = 'nodejs' | ||||
if not _verify_node(_node): | ||||
_node = 'node' | ||||
return _node | ||||
MinRK
|
r14203 | def markdown2html_marked(source, encoding='utf-8'): | ||
"""Convert a markdown string to HTML via marked""" | ||||
Thomas Kluyver
|
r17249 | command = [_find_nodejs(), 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') | ||||
Thomas Kluyver
|
r17249 | # The mistune renderer is the default, because it's simple to depend on it | ||
Thomas Kluyver
|
r17257 | markdown2html = markdown2html_mistune | ||
Thomas Kluyver
|
r17249 | |||
MinRK
|
r17885 | def markdown2rst(source, extra_args=None): | ||
Paul Ivanov
|
r15880 | """Convert a markdown string to ReST via pandoc. | ||
Jonathan Frederic
|
r10436 | |||
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
|
r17885 | return pandoc(source, 'markdown', 'rst', extra_args=extra_args) | ||
MinRK
|
r11268 | |||
Jonathan Frederic
|
r15691 | def _verify_node(cmd): | ||
Jonathan Frederic
|
r15692 | """Verify that the node command exists and is at least the minimum supported | ||
Jonathan Frederic
|
r15691 | version of node. | ||
Parameters | ||||
---------- | ||||
cmd : string | ||||
Node command to verify (i.e 'node').""" | ||||
MinRK
|
r15437 | try: | ||
Jonathan Frederic
|
r15692 | out, err, return_code = get_output_error_code([cmd, '--version']) | ||
except OSError: | ||||
Jonathan Frederic
|
r15693 | # Command not found | ||
Jonathan Frederic
|
r15691 | return False | ||
Jonathan Frederic
|
r15693 | if return_code: | ||
# Command error | ||||
return False | ||||
return check_version(out.lstrip('v'), '0.9.12') | ||||