diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-07-11 10:59:50 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-07-11 10:59:50 -0400 |
commit | 66e98b7125c87706782b8247b8e0329473dbeb5a (patch) | |
tree | 4d33c71e5462aa991199159f7fa70c1b3acf355b /_scripts | |
parent | 52daf90e6206a67414b2de2f7b741b9af2cd959a (diff) | |
download | cobalt-site-66e98b7125c87706782b8247b8e0329473dbeb5a.tar.xz cobalt-site-66e98b7125c87706782b8247b8e0329473dbeb5a.zip |
reorganized assets and CSS, added a post
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" - |