##// END OF EJS Templates
push cell magic to the head of the transformer line...
push cell magic to the head of the transformer line I'm not 100% sure this is the right fix (ping @takluyver for review), since it is unclear what the physical/logical distinction is, but this does allow the cell magic transform to preempt all other transforms. closes #3604

File last commit:

r11183:67e932cc
r11460:094340ac
Show More
reveal.py
61 lines | 2.0 KiB | text/x-python | PythonLexer
"""
Reveal slide show exporter.
"""
#-----------------------------------------------------------------------------
# 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
#-----------------------------------------------------------------------------
from IPython.utils.traitlets import Unicode
from IPython.config import Config
from .basichtml import BasicHTMLExporter
from IPython.nbconvert import transformers
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class RevealExporter(BasicHTMLExporter):
"""
Exports a Reveal slide show (.HTML) which may be rendered in a web browser.
"""
file_extension = Unicode(
'reveal.html', config=True,
help="Extension of the file that should be written to disk")
template_file = Unicode(
'reveal', config=True,
help="Name of the template file to use")
def _register_transformers(self):
"""
Register all of the transformers needed for this exporter.
"""
#Register the transformers of the base class.
super(RevealExporter, self)._register_transformers()
#Register reveal help transformer
self.register_transformer(transformers.RevealHelpTransformer)
@property
def default_config(self):
c = Config({
'CSSHTMLHeaderTransformer':{
'enabled':True
},
'RevealHelpTransformer':{
'enabled':True,
},
})
c.merge(super(RevealExporter,self).default_config)
return c