aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.local')
-rwxr-xr-xdotfiles/.local/bin/doccompiler2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.local/bin/doccompiler b/dotfiles/.local/bin/doccompiler
index 03eb21e..9e24845 100755
--- a/dotfiles/.local/bin/doccompiler
+++ b/dotfiles/.local/bin/doccompiler
@@ -26,7 +26,7 @@ case "$file" in
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;;
*\.rmd) echo "require(rmarkdown); rmarkdown::render('$file', quiet=TRUE)" | R -q --vanilla ;;
*\.tex) textype "$file" ;;
- *\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
+ *\.md) pandoc "$file" -o "$base".pdf ;;
*\.sent) setsid sent "$file" 2>/dev/null & ;;
*) echo "Couldn't figure out file type!" && exit 1 ;;
esac