__init__.py
22 lines
| 927 B
| text/x-python
|
PythonLexer
/ converters / __init__.py
David Warde-Farley
|
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
|
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 | ||||