blob: 702dfe35064eef762411415b5dec4a0b0e6a4f35 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/bash
dir=$(mktemp -d)
cp *.md $dir/
fs=$(find $dir -type f)
for f in $fs
do
ghmd -o ${f}.html $f
done
wkhtmltopdf $dir/README.html $(find $dir -name '*.html' -not -name 'README.html') dokumentation.pdf
|