[ADD] New conference about Hugo for RMLL 2018

This commit is contained in:
2018-06-26 16:39:06 +02:00
parent 4add3aabac
commit da2094ab73
3 changed files with 145 additions and 0 deletions

13
2018_hugo/Makefile Normal file
View File

@ -0,0 +1,13 @@
NAME = hugo
all: html
pdf: slides.md
pandoc -t beamer -V theme=Ilmenau -V colortheme=dolphin --latex-engine=xelatex slides.md -o "${NAME}.pdf"
html: slides.md reveal.js
pandoc -s -t revealjs -o "${NAME}.html" slides.md
sed -i -e 's#reveal.min.css#reveal.css#' -e 's#reveal.min.js#reveal.js#' -e 's#simple.css#night.css#' "${NAME}.html"
clean:
rm -f *.html *.pdf