Adds some default yaml options

This commit is contained in:
Jonathan Hodgson 2019-01-04 15:47:26 +00:00
parent 6698c4644d
commit ad84c2f130
2 changed files with 4 additions and 3 deletions

View file

@ -33,9 +33,9 @@ mdtype(){ \
command=${2:-"default"} command=${2:-"default"}
echo "$command" echo "$command"
case "$command" in case "$command" in
"fplreport") pandoc "$file" --template fellowship.latex --pdf-engine=xelatex -o "${base}.pdf" ;; "fplreport") pandoc "$file" --metadata-file="$HOME/.dotfiles/pandoc/defaults.yaml" --template fellowship.latex --pdf-engine=xelatex -o "${base}.pdf" ;;
"letter") pandoc "$file" --template template-letter.tex -o "${base}.pdf" ;; "letter") pandoc "$file" --metadata-file="$HOME/.dotfiles/pandoc/defaults.yaml" --template template-letter.tex -o "${base}.pdf" ;;
*) pandoc "$file" -o "$base".pdf ;; *) pandoc "$file" --metadata-file="$HOME/.dotfiles/pandoc/defaults.yaml" -o "$base".pdf ;;
esac esac
} }

1
pandoc/defaults.yaml Normal file
View file

@ -0,0 +1 @@
colorlinks: true