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).
This commit is contained in:
parent
752ba39a0b
commit
02c7082745
|
@ -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 '';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue