You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/nbconvert/filters/pandoc.py

25 lines
684 B

from nbconvert.utils.pandoc import pandoc
def convert_pandoc(source, from_format, to_format, extra_args=None):
"""Convert between any two formats using pandoc.
This function will raise an error if pandoc is not installed.
Any error messages generated by pandoc are printed to stderr.
Parameters
----------
source : string
Input string, assumed to be valid in from_format.
from_format : string
Pandoc format of source.
to_format : string
Pandoc format for output.
Returns
-------
out : string
Output as returned by pandoc.
"""
return pandoc(source, from_format, to_format, extra_args=extra_args)