diff options
Diffstat (limited to 'dotfiles/.local/bin')
-rwxr-xr-x | dotfiles/.local/bin/doccompiler | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/doccompiler b/dotfiles/.local/bin/doccompiler index 9e24845..7216a7f 100755 --- a/dotfiles/.local/bin/doccompiler +++ b/dotfiles/.local/bin/doccompiler @@ -27,6 +27,7 @@ case "$file" in *\.rmd) echo "require(rmarkdown); rmarkdown::render('$file', quiet=TRUE)" | R -q --vanilla ;; *\.tex) textype "$file" ;; *\.md) pandoc "$file" -o "$base".pdf ;; + *\.uml) plantuml -tsvg "$file" ;; *\.sent) setsid sent "$file" 2>/dev/null & ;; *) echo "Couldn't figure out file type!" && exit 1 ;; esac |