Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 752ba39 commit 02c7082Copy full SHA for 02c7082
1 file changed
Doc/perl/l2hinit.perl
@@ -97,8 +97,13 @@ sub custom_driver_hook {
97
sub make_nav_sectref {
98
my($label,$title) = @_;
99
if ($title) {
100
- return ("<b class='navlabel'>$label:</b> "
101
- . "<span class='sectref'>$title</span>\n");
+ if ($title =~ /\<[aA] /) {
+ $title =~ s/\<[aA] /<a class="sectref" /;
102
+ }
103
+ else {
104
+ $title = "<span class=\"sectref\">$title</span>";
105
106
+ return "<b class=\"navlabel\">$label:</b> $title\n";
107
}
108
return '';
109
0 commit comments