##// END OF EJS Templates
test_file extractor
test_file extractor

File last commit:

r9565:5cc28047 merge
r9613:ff87077d
Show More
__init__.py
23 lines | 963 B | text/x-python | PythonLexer
David Warde-Farley
Introduce standard structure from coding guidelines in converters/.
r8789 """Notebook formatting converters.
This module provides several classes meant to deal with the conversion of
IPython notebooks to a variety of exported formats. All of these classes
inherit from `Converter`, which provides some general-purpose functionality
and defines the API relied upon by the `nbconvert` tool.
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2012, 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.
#-----------------------------------------------------------------------------
Matthias BUSSONNIER
Merge pull request 56 from dwf/nbconvert...
r8766 from .html import ConverterHTML
from .markdown import ConverterMarkdown
from .bloggerhtml import ConverterBloggerHTML
from .rst import ConverterRST
from .latex import ConverterLaTeX
from .python import ConverterPy
from .notebook import ConverterNotebook
Bussonnier Matthias
Merge pull request #69 from damianavila/reveal_converter...
r9565 from .reveal import ConverterReveal