##// END OF EJS Templates
fix data priority rst
fix data priority rst

File last commit:

r8789:e0bdc672
r9364:e115b20c
Show More
__init__.py
22 lines | 927 B | text/x-python | PythonLexer
"""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.
#-----------------------------------------------------------------------------
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