6 # we will be outputting *ENCODED* utf8, hence the raw open below
7 # the file is already sanity-checked by xt/authors.t
8 my @known_authors = do {
9 open (my $fh, '<:raw', 'AUTHORS') or die "Unable to open AUTHORS - can't happen: $!\n";
10 map { chomp; ( ( ! $_ or $_ =~ /^\s*\#/ ) ? () : $_ ) } <$fh>;
11 } or die "Known AUTHORS file seems empty... can't happen...";
13 $_ =~ s!( \b https? :// [^\s\>]+ )!L<$1|$1>!x