blob: 02fb5d18a1694e5e4b05f13eeb4a731a2245d571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Makefile for reveal.js presentation
#
# See https://github.com/jgm/pandoc/wiki/Using-pandoc-to-produce-reveal.js-slides
# Also look for variables at /usr/share/pandoc/data/templates/default.revealjs
REVEAL_THEME=moon
# Build a single slide deck
%.html: %.md
@echo Building $@...
@pandoc -V theme=$(REVEAL_THEME) -V css=css/index.css -V revealjs-url=reveal.js -s --mathjax -i -t revealjs $< -o $@
|