2024-03-06 14:17:03 -07:00
|
|
|
#!/bin/bash
|
|
|
|
# 2023-03-06 Hyperling
|
|
|
|
# PanDoc Usage: https://pandoc.org/MANUAL.html#general-writer-options
|
|
|
|
|
|
|
|
date
|
|
|
|
|
2024-03-06 16:04:43 -07:00
|
|
|
if [[ -e ebook.pdf ]]; then
|
|
|
|
rm -v ebook.pdf
|
|
|
|
fi
|
2024-03-06 14:17:03 -07:00
|
|
|
|
|
|
|
pandoc ebook.md \
|
2024-03-06 16:04:43 -07:00
|
|
|
-s -N --toc --toc-depth=3 \
|
2024-03-06 14:17:03 -07:00
|
|
|
-o ebook.pdf
|
|
|
|
status=$?
|
|
|
|
|
|
|
|
echo "Completed with status '$status'."
|
|
|
|
|
|
|
|
date
|
|
|
|
|
|
|
|
exit $status
|