57 lines
1.6 KiB
Bash
57 lines
1.6 KiB
Bash
#!/bin/bash
|
|
|
|
# Combine markdown files into single input file for pandoc
|
|
|
|
NonCvResumeInputFiles=(
|
|
"../../common/@ReachableCEO/Resume/Common/Contact-Info.md"
|
|
"../@ReachableCEO/Resume/Non-CV/Skills.md"
|
|
"../@ReachableCEO/Resume/Non-CV/Projects.md"
|
|
"../../common/@ReachableCEO/Resume/Common/Work-History.md"
|
|
"../../common/@ReachableCEO/Resume/Common/Education.md"
|
|
)
|
|
|
|
rm ../output/intermediate/CharlesNWybleShortResume.md
|
|
|
|
IFS=$'\n\t'
|
|
for file in "${NonCvResumeInputFiles[@]}"; do
|
|
cat $file >> ../output/intermediate/CharlesNWybleShortResume.md
|
|
done
|
|
unset IFS
|
|
|
|
# Run pandoc to generate HTML/PDF/DOC into output dir
|
|
|
|
#pandoc \
|
|
# < ../output/intermediate/CharlesNWybleShortResume.md \
|
|
# --from=markdown \
|
|
# --output=../output/final/CharlesNWybleShortResume.pdf
|
|
|
|
#First html, for resume.reachableceo.com use
|
|
|
|
#Use pandoc
|
|
|
|
pandoc \
|
|
--from=markdown \
|
|
--to=html \
|
|
-o /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.html \
|
|
-c resume-css-stylesheet.css \
|
|
../output/intermediate/CharlesNWybleShortResume.md
|
|
|
|
# pdf/doc, for sending to hiring managers/recruiters via email (and also available on resume.reachableceo.com)
|
|
|
|
#use wktohtml
|
|
|
|
pandoc \
|
|
--from=markdown \
|
|
--to=html \
|
|
-o /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.html \
|
|
-c resume-css-stylesheet.css \
|
|
../output/intermediate/CharlesNWybleShortResume.md
|
|
|
|
#Use pandoc
|
|
|
|
pandoc \
|
|
--from=markdown \
|
|
--to=html \
|
|
-o /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.html \
|
|
-c resume-css-stylesheet.css \
|
|
../output/intermediate/CharlesNWybleShortResume.md |