aboutsummaryrefslogtreecommitdiff
path: root/doc/man/produce_html.sh.in
blob: 3f4520776cf4859d92b5418f3a204d63ce4cb010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

. @pkgdatadir@/existence.sh

if existence mandoc;
then
    for f in `find . -name \*\.[1-9]`;
    do
        mandoc -T html $f > $f.html;
    done
fi