Add resume pdf & html

This commit is contained in:
2025-06-12 15:09:24 -07:00
parent 37c242380a
commit 989107517a
10 changed files with 298 additions and 53 deletions

View File

@ -21,7 +21,7 @@ find . -maxdepth 1 -type d -name "lab-*" | while read lab_dir; do
# Generate PDF using pandoc
# Make sure 'pandoc' command is available in the image, which it is for pandoc/latex
image_dir="$lab_dir"
pandoc "$markdown_file" -s -o "$pdf_file" --pdf-engine=pdflatex --resource-path "$image_dir"
pandoc "$markdown_file" -s -o "$pdf_file" --pdf-engine=pdflatex --resource-path "$image_dir" -V geometry:margin=0.5in
if [ $? -eq 0 ]; then
echo "Successfully generated $pdf_file"