b193bb28d8
git-subtree-dir: docs git-subtree-mainline: 23545aa7ea599faf17737de9879733a1bde700d1 git-subtree-split: 106142b25c9387ffd002437027ced1b04f494205
15 lines
480 B
Bash
15 lines
480 B
Bash
# Note that .sh scripts work only on Mac. If you're on Windows, install Git Bash and use that as your client.
|
|
|
|
echo 'Killing all Jekyll instances'
|
|
kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}')
|
|
clear
|
|
|
|
echo "Building PDF-friendly HTML site for Mydoc ...";
|
|
jekyll serve --detach --config _config.yml,pdfconfigs/config_mydoc_pdf.yml;
|
|
echo "done";
|
|
|
|
echo "Building the PDF ...";
|
|
prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/mydoc.pdf;
|
|
echo "done";
|
|
|