##// END OF EJS Templates
Added datetime access to Jinja
Added datetime access to Jinja

File last commit:

r9565:5cc28047 merge
r9768:b0bae6ce
Show More
__init__.py
23 lines | 963 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
from .reveal import ConverterReveal