dimisit/compile.sh
2015-10-26 14:51:17 +01:00

27 lines
819 B
Bash
Executable file

#!/usr/bin/env zsh
for fic in **/*.md(.); do
print -n -- ${fic:r}.html
prefix=$(print -- $fic|perl -pe 's#[^/]*/#../#g;s#[^/]*$##')
pandoc -s -S --toc --css "${prefix}styling.css" \
-V lang=en \
-V highlighting-css= --mathjax \
--smart --to=html5 -A footer.html \
-o "${fic:r}.html" \
$fic
print " [DONE]"
## print -n -- ${fic:r}.pdf
## # --variable mainfont="Hoefler Text" \
## # --variable sansfont="Futura" \
## # --variable monofont="Menlo" \
## pandoc -s -S -N --toc \
## --template=template.latex \
## --variable fontsize=14pt \
## --variable linkcolor=orange \
## --variable urlcolor=orange \
## --latex-engine=xelatex \
## -o ${fic:r}.pdf \
## $fic
## print " [DONE]"
done