ok. cutting a new release

This commit is contained in:
2024-11-18 18:45:05 -06:00
parent 7d24489057
commit 272e486d44
17 changed files with 108 additions and 13 deletions

View File

@@ -3,21 +3,34 @@
rm ../output/intermediate/CharlesNWybleShortResume.md
rm /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.html
output_file="../output/intermediate/CharlesNWybleShortResume.md"
# 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"
)
IFS=$'\n\t'
for file in "${NonCvResumeInputFiles[@]}"; do
cat $file >> ../output/intermediate/CharlesNWybleShortResume.md
done
unset IFS
#Pull in my contact info
cat "../../common/@ReachableCEO/Resume/Common/Contact-Info.md" >> $output_file
echo " " >> $output_file
#Pull in my skills
cat "../@ReachableCEO/Resume/Non-CV/Skills.md" >> $output_file
echo " " >> $output_file
#Pull in my projects
cat "../@ReachableCEO/Resume/Non-CV/Projects.md" >> $output_file
echo " " >> $output_file
#Pull in my work history
cat "../@ReachableCEO/Resume/Non-CV/Work-History.md" >> $output_file
echo " " >> $output_file
#Pull in my education info
cat "../../common/@ReachableCEO/Resume/Common/Education.md" >> $output_file
# Run pandoc to generate HTML/PDF/DOC into output dir
@@ -28,4 +41,4 @@ pandoc \
--to=html \
-o /d/tsys/@ReachableCEO/resume.reachableceo.com/non-cv/CharlesNWybleShortResume.html \
-c resume-css-stylesheet.css \
../output/intermediate/CharlesNWybleShortResume.md
$output_file