revealhelp.py
64 lines
| 2.6 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r10674 | """Module that pre-processes the notebook for export via Reveal. | ||
""" | ||||
#----------------------------------------------------------------------------- | ||||
# 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 | ||||
#----------------------------------------------------------------------------- | ||||
Paul Ivanov
|
r12219 | from .base import Preprocessor | ||
Thomas Kluyver
|
r13397 | from IPython.utils.traitlets import Unicode | ||
damianavila
|
r11181 | |||
Jonathan Frederic
|
r10674 | #----------------------------------------------------------------------------- | ||
# Classes and functions | ||||
#----------------------------------------------------------------------------- | ||||
Paul Ivanov
|
r12219 | class RevealHelpPreprocessor(Preprocessor): | ||
Jonathan Frederic
|
r10437 | |||
MinRK
|
r12443 | url_prefix = Unicode('reveal.js', config=True, | ||
MinRK
|
r12439 | help="""The URL prefix for reveal.js. | ||
This can be a a relative URL for a local copy of reveal.js, | ||||
or point to a CDN. | ||||
MinRK
|
r12443 | For speaker notes to work, a local reveal.js prefix must be used. | ||
MinRK
|
r12439 | """ | ||
) | ||||
damianavila
|
r11179 | |||
Paul Ivanov
|
r12219 | def preprocess(self, nb, resources): | ||
Jonathan Frederic
|
r10674 | """ | ||
Paul Ivanov
|
r12219 | Called once to 'preprocess' contents of the notebook. | ||
damianavila
|
r11183 | |||
Jonathan Frederic
|
r10674 | Parameters | ||
---------- | ||||
nb : NotebookNode | ||||
Notebook being converted | ||||
resources : dictionary | ||||
Additional resources used in the conversion process. Allows | ||||
Paul Ivanov
|
r12219 | preprocessors to pass variables into the Jinja engine. | ||
Jonathan Frederic
|
r10674 | """ | ||
damianavila
|
r11183 | |||
Jonathan Frederic
|
r10437 | for worksheet in nb.worksheets : | ||
Jonathan Frederic
|
r11367 | for index, cell in enumerate(worksheet.cells): | ||
damianavila
|
r10823 | |||
#Make sure the cell has slideshow metadata. | ||||
damianavila
|
r10947 | cell.metadata.align_type = cell.get('metadata', {}).get('slideshow', {}).get('align_type', 'Left') | ||
damianavila
|
r10823 | cell.metadata.slide_type = cell.get('metadata', {}).get('slideshow', {}).get('slide_type', '-') | ||
Jonathan Frederic
|
r10674 | #Get the slide type. If type is start of subslide or slide, | ||
#end the last subslide/slide. | ||||
Jonathan Frederic
|
r10437 | if cell.metadata.slide_type in ['slide']: | ||
Jonathan Frederic
|
r11367 | worksheet.cells[index - 1].metadata.slide_helper = 'slide_end' | ||
Jonathan Frederic
|
r10437 | if cell.metadata.slide_type in ['subslide']: | ||
Jonathan Frederic
|
r11367 | worksheet.cells[index - 1].metadata.slide_helper = 'subslide_end' | ||
damianavila
|
r11179 | |||
damianavila
|
r11183 | |||
Jonathan Frederic
|
r12143 | if not isinstance(resources['reveal'], dict): | ||
damianavila
|
r11184 | resources['reveal'] = {} | ||
damianavila
|
r11183 | resources['reveal']['url_prefix'] = self.url_prefix | ||
Jonathan Frederic
|
r10674 | return nb, resources | ||