Nothing crazy, just a Makefile which compiles a remark.js presentation from a template html file and a directory of markdown slides.
git clone git://github.com/brettlangdon/slideshow-builder
cd ./slideshow-builder
Create a new file for each individual slide in the slides
directory. Make sure they are in the order you wish them to
be in the slideshow. E.g. 1_title.md, 2_about_me.md, etc.
Please refer to Remark's documentation for information on formatting slides.
Edit the template.html file to suit your needs.
The slides contents will be replaced with {{slides}} in
the template file.
Just run make from the root directory
Everything will get put into the build directory.
Either copy ./build/index.html to a web server or open in a browser,
or you can run make run to run python -m SimpleHTTPServer from
within the ./build directory.
Do whatever you want. This is just a Makefile