reveal.py
51 lines
| 1.6 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r10588 | """ | ||
Jonathan Frederic
|
r10677 | Reveal slide show exporter. | ||
""" | ||||
Jonathan Frederic
|
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
|
r11383 | from IPython.utils.traitlets import Unicode, List | ||
Matthias BUSSONNIER
|
r10963 | from IPython.config import Config | ||
Jonathan Frederic
|
r10588 | |||
MinRK
|
r11108 | from .basichtml import BasicHTMLExporter | ||
Brian E. Granger
|
r11089 | from IPython.nbconvert import transformers | ||
Jonathan Frederic
|
r10588 | #----------------------------------------------------------------------------- | ||
# Classes | ||||
#----------------------------------------------------------------------------- | ||||
MinRK
|
r11108 | class RevealExporter(BasicHTMLExporter): | ||
Jonathan Frederic
|
r10677 | """ | ||
Exports a Reveal slide show (.HTML) which may be rendered in a web browser. | ||||
""" | ||||
Jonathan Frederic
|
r10624 | file_extension = Unicode( | ||
'reveal.html', config=True, | ||||
help="Extension of the file that should be written to disk") | ||||
Jonathan Frederic
|
r10588 | |||
Jonathan Frederic
|
r10624 | template_file = Unicode( | ||
'reveal', config=True, | ||||
help="Name of the template file to use") | ||||
Jonathan Frederic
|
r11383 | |||
Matthias BUSSONNIER
|
r10963 | |||
@property | ||||
def default_config(self): | ||||
damianavila
|
r11179 | c = Config({ | ||
'CSSHTMLHeaderTransformer':{ | ||||
'enabled':True | ||||
}, | ||||
'RevealHelpTransformer':{ | ||||
'enabled':True, | ||||
}, | ||||
}) | ||||
Matthias BUSSONNIER
|
r10963 | c.merge(super(RevealExporter,self).default_config) | ||
return c | ||||