部署方法:
windows: 在MingW64中运行:
bundle exec jekyll serve
TODO:Downloads a just-the-docs website and converts it into a PDF file for offline reading
#!/bin/bash
filename="openrndr-guide"
domain="guide.openrndr.org"
path="" # /some/folder/ if the guide is not located at /
mkdir -p /tmp/manual
cd /tmp/manual || exit
# curl downloads the index page of the website
# grep extracts the <nav> ... </nav> section
# sed(1) injects a line break in front of every URL and adds the full domain
# sed(2) deletes from each line the " character and everything that follows, leaving the clean URL
# tail deletes the first line, which contains a lonely <nav> tag
urlstr=$(curl -s "https://$domain$path" | grep -o -E '<nav .*</nav>' | sed "s/href=\"\//href=\"\nhttps:\/\/$domain\//g" | sed "s/\".*//g" | tail +2)
# convert a long string into an array
urls=($urlstr)
# count how many items in the array
length=${#urls[@]}
echo "Found $length URLs"
# one by one create NNNN.pdf files from each URL
for (( i=0; i<${length}; i++ ));
do
echo "# Page $i of $length"
padded=$(printf "%04d" $i)
wkhtmltopdf ${urls[$i]} $padded.pdf
done
date=$(date +"%F")
# finally join all the PDF files into one
pdfunite *.pdf /tmp/$filename-$date.pdf
Dependencies: wkhtmltopdf curl sed pdfunite grep