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

make_nav_sectref(): Create more minimal HTML, hanging the class attribute

                     off an existing anchor tag if available (I think it
                     always is, but am not completely sure).
üst 752ba39a
......@@ -97,8 +97,13 @@ $CUSTOM_BUTTONS = '';
sub make_nav_sectref {
my($label,$title) = @_;
if ($title) {
return ("<b class='navlabel'>$label:</b> "
. "<span class='sectref'>$title</span>\n");
if ($title =~ /\<[aA] /) {
$title =~ s/\<[aA] /<a class="sectref" /;
}
else {
$title = "<span class=\"sectref\">$title</span>";
}
return "<b class=\"navlabel\">$label:</b> $title\n";
}
return '';
}
......
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