Skip to content
Snippets Groups Projects

Feature/ci slides setup

Merged Dennis Gläser requested to merge feature/ci-slides-setup into master
Compare and Show latest version
1 file
+ 8
5
Compare changes
  • Side-by-side
  • Inline
+ 8
5
@@ -44,13 +44,16 @@ pages:
- |
mkdir build && cd build
for MDFILE in ../slides/*.md; do
echo "Processing file '${MDFILE}'"
TARGET=${MDFILE/.md/.html}
pandoc -t revealjs -s --mathjax -o ${TARGET} ../slides/${MDFILE} \
-V revealjs-url=https://unpkg.com/reveal.js/ \
-V theme=${REVEAL_THEME} \
--include-in-header=../slides/dumux_course.css
echo "Processing file '${MDFILE}' into '${TARGET}'"
pandoc -t revealjs -s --mathjax \
-o ${TARGET} ../slides/${MDFILE} \
-V revealjs-url=https://unpkg.com/reveal.js/ \
-V theme=${REVEAL_THEME} \
--include-in-header=../slides/dumux_course.css
done
echo "PDW = $(pwd)"
ls
cd ..
- ls build
- mkdir public && mv build/* public
Loading