Note
This documentation is for a development version of IPython. There may be significant differences from the latest stable release (1.2.1).
Module containing single call export functions.
Bases: exceptions.NameError
Export a notebook object using specific exporter class.
Parameters: | exporter : class:~IPython.nbconvert.exporters.exporter.Exporter class or instance
nb : NotebookNode
config : config (optional, keyword arg)
resources : dict (optional, keyword arg)
|
---|---|
Returns: | tuple- output, resources, exporter_instance output : str
resources : dictionary
exporter_instance : Exporter
|
Notes
WARNING: API WILL CHANGE IN FUTURE RELEASES OF NBCONVERT
Export a notebook object to a template type by its name. Reflection (Inspect) is used to find the template’s corresponding explicit export method defined in this module. That method is then called directly.
Parameters: | format_name : str
nb : NotebookNode
config : config (optional, keyword arg)
resources : dict (optional, keyword arg)
|
---|---|
Returns: | tuple- output, resources, exporter_instance output : str
resources : dictionary
exporter_instance : Exporter
|
Notes
WARNING: API WILL CHANGE IN FUTURE RELEASES OF NBCONVERT
Return a list of the currently supported export targets
WARNING: API WILL CHANGE IN FUTURE RELEASES OF NBCONVERT