prep for css/wktohtml etc

This commit is contained in:
2024-11-18 11:40:26 -06:00
parent 3350a05b3e
commit 2d55022673
9 changed files with 67 additions and 318 deletions

View File

@@ -0,0 +1,26 @@
#!/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"
"../@ReachableCEO/Resume/Non-CV/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 PDF/DOC into output dir
#pandoc \
# < ../output/intermediate/CharlesNWybleShortResume.md \
# --from=markdown \
# --output=../output/final/CharlesNWybleShortResume.pdf