Merge pull request #4048 from minrk/finish-notes

finish up speaker-notes PR

This removes the special handling of speaker notes, simply informing the user that speaker notes require local require.js.

It also renames the alias name for reveal.js url prefix to something more descriptive (reveal-prefix).
pull/37/head
Min RK 13 years ago
commit f74e9b1ff2

@ -293,6 +293,8 @@ def make_exclude():
if not have['tornado']:
exclusions.append(ipjoin('html'))
exclusions.append(ipjoin('nbconvert', 'post_processors', 'serve'))
exclusions.append(ipjoin('nbconvert', 'post_processors', 'tests', 'test_serve'))
if not have['jinja2']:
exclusions.append(ipjoin('html', 'notebookapp'))

@ -61,14 +61,9 @@ The currently supported export formats are:
* ``--to slides``
This generates a Reveal.js HTML slideshow.
It must be served by an HTTP server. The easiest way to get this is to add
It must be served by an HTTP server. The easiest way to do this is adding
``--post serve`` on the command-line.
If you want to use the speaker notes plugin, just add
``--slide-notes=True`` on the command-line.
For low connectivity environments, you can use a local copy of the reveal.js library,
just add ``--offline-slides=reveal.js`` on the command-line, and do not forget to move
your downloaded ``reveal.js`` library to the same folder where your slides are located.
* ``--to markdown``
Simple markdown output. Markdown cells are unaffected,

Loading…
Cancel
Save