2024-05-10 02:14:03 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
cd Committee
|
2024-05-12 13:18:05 +00:00
|
|
|
|
|
|
|
# copy in teh config for this folder
|
|
|
|
cp ../_scripts/md_toml/_Handovers.md.toml ./.md.toml
|
|
|
|
|
2024-05-10 02:14:03 +00:00
|
|
|
cargo-bfom
|
|
|
|
|
2024-05-12 13:18:05 +00:00
|
|
|
## cleanup
|
|
|
|
rm -f .md.toml
|
|
|
|
|
2024-05-10 02:14:03 +00:00
|
|
|
# recursively parse _Handovers_html use wkhtmltopdf to convert to pdf
|
|
|
|
cd _Handovers_html
|
|
|
|
|
|
|
|
out_folder="../_Handovers_pdf"
|
|
|
|
rm -rf "$out_folder"
|
|
|
|
for d in */ ; do
|
|
|
|
# skip symlinks
|
|
|
|
[ -L "''${d%/}" ] && continue
|
|
|
|
# exclude teh template fodler
|
|
|
|
if [[ $d == *"_Templates"* ]]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# create output folder
|
|
|
|
mkdir -p "$out_folder/$d"
|
|
|
|
|
|
|
|
# iterate the files
|
|
|
|
for file in $d*.html; do
|
|
|
|
if [ -f "$file" ]; then
|
|
|
|
|
|
|
|
# we need teh filename/path
|
|
|
|
stripped=''${file/.html/""}
|
|
|
|
|
|
|
|
echo "$out_folder/$stripped.pdf"
|
|
|
|
|
|
|
|
# convert teh html to pdf
|
2024-05-13 14:00:25 +00:00
|
|
|
puppeteer print "$stripped.html" "$out_folder/$stripped.pdf" 2> ./tmp.txt
|
2024-05-10 02:14:03 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
cd ../
|