2024-11-18 16:02:13 +00:00
|
|
|
#!/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"
|
2024-11-18 18:41:54 +00:00
|
|
|
"../../common/@ReachableCEO/Resume/Common/Work-History.md"
|
2024-11-18 16:02:13 +00:00
|
|
|
"../../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
|
|
|
|
|
2024-11-18 17:58:44 +00:00
|
|
|
# Run pandoc to generate HTML/PDF/DOC into output dir
|
2024-11-18 17:40:26 +00:00
|
|
|
|
|
|
|
#pandoc \
|
|
|
|
# < ../output/intermediate/CharlesNWybleShortResume.md \
|
|
|
|
# --from=markdown \
|
2024-11-18 17:58:44 +00:00
|
|
|
# --output=../output/final/CharlesNWybleShortResume.pdf
|
|
|
|
|
2024-11-18 18:41:54 +00:00
|
|
|
#First html, for resume.reachableceo.com
|
|
|
|
|
2024-11-18 17:58:44 +00:00
|
|
|
pandoc \
|
|
|
|
--from=markdown \
|
|
|
|
--to=html \
|
|
|
|
-o ../output/final/CharlesNWybleShortResume.html \
|
|
|
|
-c resume-css-stylesheet.css \
|
2024-11-18 18:41:54 +00:00
|
|
|
../output/intermediate/CharlesNWybleShortResume.md
|
|
|
|
|
|
|
|
# Second pdf, for sending to hiring managers/recruiters
|
|
|
|
|
|
|
|
# Third pdf, for sending to hiring managers/recruiters
|