##// END OF EJS Templates
Removed defaults set to config, from now on they will...
Removed defaults set to config, from now on they will be set in the constructor.

File last commit:

r10485:1de3574b
r10584:ae8f291b
Show More
converter.py
23 lines | 822 B | text/x-python | PythonLexer
"""Latex transformer.
Module that allows latex output notebooks to be conditioned before
they are converted.
"""
#-----------------------------------------------------------------------------
# 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.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Functions
#-----------------------------------------------------------------------------
def export_sphinx_report(nb, config=None):
pass
def export_sphinx_report(nb, fileName, config=None):
pass
#TODO: Add basic export/import utility functions.
__author__ = 'root'