ipypublish.postprocessors.convert_bibgloss module¶
-
class
ipypublish.postprocessors.convert_bibgloss.ConvertBibGloss(*args, **kwargs)[source]¶ Bases:
ipypublish.postprocessors.base.IPyPostProcessorconvert a bibglossary to the required format
-
property
allowed_mimetypes¶ override in subclasses
return a list of allowed mime types if None, then all are allowed
Text based mime-types include: text/plain, text/latex, text/restructuredtext, text/html, text/x-python, application/json, text/markdown, text/asciidoc, text/yaml
-
encoding¶ A trait for unicode strings.
-
files_folder¶ A trait for unicode strings.
-
property
logger_name¶ override in subclass
-
property
requires_path¶ override in subclasses
whether the prostprocessor requires the supplied filepath to have an existing parent directory
if True and filepath is None, will raise an IOError, otherwise, will try to make the directory if it doesn’t exist
-
resource_key¶ A trait for unicode strings.
-
run_postprocess(stream, mimetype, filepath, resources)[source]¶ should not be called directly override in sub-class
- Parameters
stream (str) – the main file contents
filepath (None or pathlib.Path) – the path to the output file
resources (dict) – a resources dict, output from exporter.from_notebook_node
- Returns
stream (str)
filepath (None or pathlib.Path)
resources (dict)
-
property