Commit e758cd7a authored by Fred Drake's avatar Fred Drake

tohtml(): Make module names anchors.

parent 8a0e99a2
......@@ -42,7 +42,8 @@ sub tohtml{
my $name;
foreach $name (split /,/, $self->{names}) {
my($key,$type,$synopsis) = $self->get($name);
$data .= "<dt><b><tt>$name</tt></b>\n<dd>$synopsis\n";
$data .= ("<dt><b><tt><a href=\"module-$key.html\">$name</a></tt></b>"
. "\n<dd>$synopsis\n");
}
$data .= "</dl>\n";
$data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment