config/scripts/md2pdf

10 lines
205 B
Plaintext
Raw Normal View History

2018-04-12 16:38:07 +02:00
#!/bin/bash
file=$1
extra=""
shift
if [ -e listing-setup.tex ]; then
extra=" --listings -H listing-setup.tex "
fi
pandoc -s -S ${file} --toc -o ${file%.*}.pdf --variable urlcolor=cyan ${extra} $@