##// END OF EJS Templates
comit from home
comit from home

File last commit:

r10761:3ca63525
r10872:6b2a1477
Show More
fullhtml.py
32 lines | 1.0 KiB | text/x-python | PythonLexer
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 """
Exporter for exporting full HTML documents.
Jonathan Frederic
Made exporter names match template names.
r10639 """
#-----------------------------------------------------------------------------
# Copyright (c) 2013, 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.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 from IPython.utils.traitlets import Unicode
Jonathan Frederic
Made exporter names match template names.
r10639 # local import
Jonathan Frederic
Fixed namespace errors
r10692 import basichtml
Jonathan Frederic
Made exporter names match template names.
r10639
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 class FullHtmlExporter(basichtml.BasicHtmlExporter):
"""
Exports a full HTML document.
"""
Jonathan Frederic
Made exporter names match template names.
r10639 template_file = Unicode(
'fullhtml', config=True,
help="Name of the template file to use")