Added testTargets for revealJs

This commit is contained in:
marko
2021-02-21 09:51:10 +01:00
parent 20e66bddd6
commit f6af0df817

View File

@@ -8,6 +8,16 @@ build/trainings.d/pdf/%.pdf: trainings.d/%.md
mkdir -p build/trainings.d/pdf
pandoc -t beamer -o $@ $<
.PHONY: installReveal3
installReveal3:
wget https://github.com/hakimel/reveal.js/archive/3.9.2.tar.gz
tar -xzvf 3.9.2.tar.gz
mv reveal.js-3.9.2 reveal.js
.PHONY: testReveal
testReveal:
pandoc -t revealjs -s -o revealTest.html revealTest.md -V revealjs-url=https://unpkg.com/reveal.js@3.9.2/
.PHONY: echo
echo:
echo $(mdFiles)