diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-05-20 18:44:34 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-05-20 18:44:34 -0300 |
commit | 946dea4f6d153c04d31589c610141c96b0f39c12 (patch) | |
tree | 6a399e4eed46af042ed338015d85e931cfe1d8a5 /Makefile.revealjs | |
parent | 8ec513e5b26f0043cb09ad4dc245076554c0fe47 (diff) | |
download | slides-master.tar.gz slides-master.tar.bz2 |
Diffstat (limited to 'Makefile.revealjs')
-rw-r--r-- | Makefile.revealjs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.revealjs b/Makefile.revealjs new file mode 100644 index 0000000..02fb5d1 --- /dev/null +++ b/Makefile.revealjs @@ -0,0 +1,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 $@ |