python-course

Jekyll source for website containing course materials for Python course

Slides

Slides are written in Markdown and converted to Reveal.js HTML using Pandoc to produce the slides

$ cd slides
$ pandoc -s --mathjax -t revealjs -V theme=gt -V slideNumber=true -V progress=true -o intro-python.html intro-python.md

To generate all the slides:

$ for file in `ls *.md`; do pandoc -s --mathjax -t revealjs -V theme=gt -V slideNumber=true -V progress=true -o $(basename $file .md).html $file; done