Revert "Create Revision 1.0!"

This commit is contained in:
2024-03-06 19:30:00 -07:00
committed by GitHub
parent a2221cbe61
commit b12d2d476c
5 changed files with 0 additions and 365 deletions

View File

@@ -1,27 +0,0 @@
#!/bin/bash
# 2024-03-06 Hyperling
# PanDoc Usage: https://pandoc.org/MANUAL.html#general-writer-options
date
ebook="HyperlingsHealthProtocol.pdf"
if [[ -e $ebook ]]; then
echo -n "Old: "
du -h $ebook
rm -v $ebook
fi
pandoc ebook.md \
-s -N --toc --toc-depth=3 \
-o $ebook
status=$?
echo "Completed with status '$status'."
echo -n "New: "
du -h $ebook
date
exit $status