"""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