From: Dagfinn Ilmari Mannsåker Date: Tue, 6 Jan 2015 19:24:05 +0000 (+0000) Subject: Preserve space after : in AUTHORS POD X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=8e459d6005843065cbfa0ae7990822f762a439a3 Preserve space after : in AUTHORS POD --- diff --git a/maint/gen_pod_authors b/maint/gen_pod_authors index 5745b2b..e814dc5 100755 --- a/maint/gen_pod_authors +++ b/maint/gen_pod_authors @@ -10,7 +10,7 @@ my @known_authors = do { map { chomp; ( ( ! $_ or $_ =~ /^\s*\#/ ) ? () : $_ ) } <$fh>; } or die "Known AUTHORS file seems empty... can't happen..."; -$_ =~ s!^ ( [^\:]+ ) : \s !B<$1>:!x +$_ =~ s!^ ( [^\:]+ ) : \s !B<$1>: !x for @known_authors; $_ =~ s!( \b https? :// [^\s\>]+ )!L<$1|$1>!x