pydown is another "Presentation System in a single HTML page" written by python inspired by keydown.
Like keydown it uses the deck.js and its extentions for the presentation.
http://isnowfy.github.io/pydown/
Edit slides.md
!SLIDE
# Hello
!SLIDE
# Another slide
!SLIDE left
# left
$ python main.py slides.md slides
or you can install pydown to run it with pydown
Thanks for sloria
$ pip install python-pydown
$ pydown slides.md slides
This will make:
| - slides/
| - css/
| - js/
| - index.html
Any text follows !SLIDE will be added to the slide as css classes
!SLIDE left
For python
~~~~{python} def test(): print 'hello' ~~~~