blob: 63a35031dfdd1e066fe80dcc744f8ea6af18940c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
out=html
rm ./${out}/*.html
texi2html --output=${out} \
--split=chapter \
--noheader \
--nonumber-section \
--init-file=./site.conf \
--top-file=index.html \
geiser.texi
cp geiser.css ${out}
|