15 lines
394 B
Bash
15 lines
394 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
MarkdownOutputFile="./output/job-board/CharlesNWybleResume.md"
|
||
|
|
||
|
# Run pandoc/etc to generate HTML/PDF/DOC into output dir
|
||
|
|
||
|
#First html/pdf/doc, for resume.reachableceo.com use
|
||
|
|
||
|
pandoc \
|
||
|
$MarkdownOutputFile \
|
||
|
--template eisvogel \
|
||
|
--metadata-file=./CharlesNWybleResume.yml \
|
||
|
--from markdown \
|
||
|
--to=pdf \
|
||
|
--output /d/tsys/@ReachableCEO/resume.reachableceo.com/CharlesNWybleResume.pdf
|