##// END OF EJS Templates
Finished rename/refact on API namespace
Finished rename/refact on API namespace

File last commit:

r10690:c80f2fb7
r10690:c80f2fb7
Show More
reveal.py
49 lines | 1.6 KiB | text/x-python | PythonLexer
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 """
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 Reveal slide show exporter.
"""
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 #-----------------------------------------------------------------------------
# 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
Finished a rough draft of the exporters.
r10588 # local import
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 import basichtml
Jonathan Frederic
Got RST exporting to work... Sort of.
r10626 import nbconvert.transformers.revealhelp
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 class RevealExporter(basichtml.BasicHtmlExporter):
"""
Exports a Reveal slide show (.HTML) which may be rendered in a web browser.
"""
Jonathan Frederic
Fixed all broken references, refactored some stuff here and there,...
r10624 file_extension = Unicode(
'reveal.html', config=True,
help="Extension of the file that should be written to disk")
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
Jonathan Frederic
Fixed all broken references, refactored some stuff here and there,...
r10624 template_file = Unicode(
'reveal', config=True,
help="Name of the template file to use")
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 def _register_transformers(self):
Jonathan Frederic
Finished rename/refact on API namespace
r10690 """
Register all of the transformers needed for this exporter.
"""
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
#Register the transformers of the base class.
Jonathan Frederic
Almost have nbconvert working again...
r10630 super(RevealExporter, self)._register_transformers()
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
#Register reveal help transformer
Jonathan Frederic
Almost have nbconvert working again...
r10630 self.register_transformer(nbconvert.transformers.revealhelp.RevealHelpTransformer)
Jonathan Frederic
Finished a rough draft of the exporters.
r10588