";
$self->{'Tagmap'}->{'VerbatimFormatted'} = "\n";
$self->{'Tagmap'}->{'F'} = "";
$self->{'Tagmap'}->{'C'} = "";
# Don't put head4 tags into the Table of Contents. We have this
delete $Pod::Simple::HTML::ToIndex{'head4'};
return $self;
}
# Override do_beginning to put the name of the module at the top
sub do_beginning {
my $self = shift;
$self->SUPER::do_beginning(@_);
print {$self->{'output_fh'}} "" . $self->get_short_title . "
";
return 1;
}
1;