diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2000-04-14 02:50:19 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2000-04-14 02:50:19 -0400 |
commit | b232e99a8dcdb705a65957d058ae99b12d2f6616 (patch) | |
tree | 05d3038c9d7796e5e3bece88ae1ebc32735a4897 /scripts/cfg2html.pl | |
parent | c834365894d03f15106f5e08f7266213d7514abc (diff) | |
download | lynx-snapshots-b232e99a8dcdb705a65957d058ae99b12d2f6616.tar.gz |
snapshot of project "lynx", label v2-8-3pre_5
Diffstat (limited to 'scripts/cfg2html.pl')
-rwxr-xr-x | scripts/cfg2html.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/cfg2html.pl b/scripts/cfg2html.pl index 8e5dcc31..be75e24c 100755 --- a/scripts/cfg2html.pl +++ b/scripts/cfg2html.pl @@ -370,6 +370,9 @@ EOF for $n (0..$#major) { printf FP "\n"; printf FP "<h2><a name=\"%s\">%s</a></h2>\n", $cats{$major[$n]}, $major[$n]; + if ($descs{$major[$n]} !~ /^$/) { + printf FP "<h3>Description</h3>\n%s\n", $descs{$major[$n]}; + } $c = $index{$major[$n]}; if ( $c ne "" ) { @c = split(/\n/, $c); |