File Coverage

blib/lib/Text/Markup/Mediawiki.pm
Criterion Covered Total %
statement 23 23 100.0
branch 2 4 50.0
condition 1 3 33.3
subroutine 6 6 100.0
pod 0 1 0.0
total 32 37 86.4


line stmt bran cond sub pod time code
1             package Text::Markup::Mediawiki;
2              
3 1     1   61202 use 5.8.1;
  1         4  
4 1     1   5 use strict;
  1         2  
  1         20  
5 1     1   4 use warnings;
  1         2  
  1         28  
6 1     1   5 use File::BOM qw(open_bom);
  1         1  
  1         47  
7 1     1   6 use Text::MediawikiFormat 1.0;
  1         13  
  1         15  
8              
9             our $VERSION = '0.31';
10              
11             sub parser {
12 2     2 0 6 my ($file, $encoding, $opts) = @_;
13 2         10 open_bom my $fh, $file, ":encoding($encoding)";
14 2         511 local $/;
15 2         52 my $html = Text::MediawikiFormat::format(<$fh>, @{ $opts });
  2         53  
16 2 100       5448 return unless $html =~ /\S/;
17 1         4 utf8::encode($html);
18 1 0 33     9 return $html if $opts->[1] && $opts->[1]->{raw};
19 1         25 return qq{
20            
21            
22            
23            
24             $html
25            
26            
27             };
28              
29             }
30              
31             1;
32             __END__