This commit is contained in:
Miloslav Ciz 2024-02-24 19:26:17 +01:00
parent 940ac8279b
commit 280aba9025
8 changed files with 1710 additions and 1675 deletions

12
make_pdf.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
# Creates a PDF version of the wiki.
echo "making PDF"
./make_html_single.sh
cat lrs_wiki.html | sed "s/<code> /<code>\n /" > _tmp.html
htmldoc --bodyfont sans --fontsize 10 --gray --left 8mm --right 8mm --top 8mm --bottom 8mm --continuous --header ... --header1 ... --footer ct/ -t pdf -f lrs_wiki.pdf _tmp.html
rm _tmp.html
echo "done"