From f96771a066490bd43af8ca2a274384669b09fe22 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 23 Nov 2014 12:15:28 +0100 Subject: Dokumentation als PDF --- dokumentation.pdf | Bin 0 -> 126327 bytes gendoc.sh | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 dokumentation.pdf create mode 100755 gendoc.sh diff --git a/dokumentation.pdf b/dokumentation.pdf new file mode 100644 index 0000000..a6c4642 Binary files /dev/null and b/dokumentation.pdf differ diff --git a/gendoc.sh b/gendoc.sh new file mode 100755 index 0000000..702dfe3 --- /dev/null +++ b/gendoc.sh @@ -0,0 +1,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 -- cgit v1.3.1