Kaydet (Commit) f930d827 authored tarafından Fred Drake's avatar Fred Drake

Use the same names for CLASS attributes as elsewhere.

üst bb7eff96
......@@ -38,13 +38,14 @@ sub show{
sub tohtml{
my $self = shift;
my $data = "<table>\n";
my $data = "<table class=\"synopsistable\">\n";
my $name;
foreach $name (split /,/, $self->{names}) {
my($key,$type,$synopsis) = $self->get($name);
my $link = "<a href=\"module-$key.html\">";
$data .= (" <tr><td><b><tt>$link$name</a></tt></b></td>\n"
. " <td>$synopsis</td></tr>\n");
$data .= (" <tr>"
. "<td><b><tt class=module>$link$name</a></tt></b></td>\n"
. " <td class=synopsis>$synopsis</td></tr>\n");
}
$data .= "</table>\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