diff options
Diffstat (limited to '_scripts')
-rwxr-xr-x | _scripts/resume.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/_scripts/resume.sh b/_scripts/resume.sh deleted file mode 100755 index 4ee93ca..0000000 --- a/_scripts/resume.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -INFILE="$1" -CSSFILE="$2" -OUTFILE="$(echo "$1" | cut -d'.' -f1).pdf" - -PD=$(which pandoc) -PDFLAGS="--from=markdown_mmd+yaml_metadata_block+smart --standalone" -WK=$(which wkhtmltopdf) -WKFLAGS="-B 25mm -T 25mm -L 25mm -R 25mm -q -s Letter" - -"$PD" "$PDFLAGS" --to=html -V css="$CSSFILE" "$INFILE" | "$WK" "$WKFLAGS" - "$OUTFILE" - |