sc-lectures/build.sh
2020-04-01 23:35:09 +03:00

11 lines
247 B
Bash
Executable File

#!/bin/sh
for file in *.md
do
base=$(basename $file .md)
if [ $base != "README" ]
then
pandoc -i $file -t revealjs -s --highlight-style=breezeDark --include-in-header=style.html --highlight-style=highlight.theme >"$base.html"
fi
done