diff options
| author | Jameson <108906685+2084x@users.noreply.github.com> | 2023-01-15 16:27:46 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-15 05:27:46 +0000 |
| commit | 5c262da7c39fb0b3cd52acca36f45d4e7c629d37 (patch) | |
| tree | c6b526c6aee52a5031b2f5e09e8bfb97ed02e151 /.local/bin/compiler | |
| parent | 9068ccd66cb8c4a7f4655303cc9eaa26bba78127 (diff) | |
| download | eibhear-5c262da7c39fb0b3cd52acca36f45d4e7c629d37.tar.gz eibhear-5c262da7c39fb0b3cd52acca36f45d4e7c629d37.tar.zst eibhear-5c262da7c39fb0b3cd52acca36f45d4e7c629d37.zip | |
Fix markdown compiling (#1247)
Diffstat (limited to '.local/bin/compiler')
| -rwxr-xr-x | .local/bin/compiler | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/compiler b/.local/bin/compiler index 6e28cd0..8420e25 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -39,9 +39,9 @@ case "$ext" in java) javac -d classes "$file" && java -cp classes "${1%.*}" ;; m) octave "$file" ;; md) if [ -x "$(command -v lowdown)" ]; then - lowdown --parse-no-intraemph "$file" -Tms | groff -mpdfmark -ms -kept > "$base".pdf + lowdown --parse-no-intraemph "$file" -Tms | groff -mpdfmark -ms -kept -T pdf > "$base".pdf elif [ -x "$(command -v groffdown)" ]; then - groffdown -i "$file" | groff > "$base.pdf" + groffdown -i "$file" | groff -T pdf > "$base".pdf else pandoc -t ms --highlight-style=kate -s -o "$base".pdf "$file" fi ; ;; @@ -51,7 +51,7 @@ case "$ext" in py) python "$file" ;; [rR]md) Rscript -e "rmarkdown::render('$file', quiet=TRUE)" ;; rs) cargo build ;; - sass) sassc -a "$file" "$base.css" ;; + sass) sassc -a "$file" "$base".css ;; scad) openscad -o "$base".stl "$file" ;; sent) setsid -f sent "$file" 2>/dev/null ;; tex) textype "$file" ;; |
