prep for css/wktohtml etc
This commit is contained in:
26
CurrentResume/non-cv/code/generateNonCv.sh
Normal file
26
CurrentResume/non-cv/code/generateNonCv.sh
Normal 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
|
Reference in New Issue
Block a user