This file is indexed.

/usr/share/perl5/Spreadsheet/Wright/HTML.pm is in libspreadsheet-wright-perl 0.105-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package Spreadsheet::Wright::HTML;

use 5.010;
use strict;
use warnings;
no warnings qw( uninitialized numeric );

BEGIN {
	$Spreadsheet::Wright::HTML::VERSION   = '0.105';
	$Spreadsheet::Wright::HTML::AUTHORITY = 'cpan:TOBYINK';
}

use Carp;
use HTML::HTML5::Writer;

use parent qw(Spreadsheet::Wright::XHTML);

sub _make_output
{
	my $self   = shift;
	my $writer = HTML::HTML5::Writer->new;
	return $writer->document($self->{'document'});
}

1;