File Coverage

blib/lib/Text/Markup/Bbcode.pm
Criterion Covered Total %
statement 23 23 100.0
branch 3 4 75.0
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 32 34 94.1


line stmt bran cond sub pod time code
1             package Text::Markup::Bbcode;
2              
3 1     1   131591 use 5.8.1;
  1         13  
4 1     1   9 use strict;
  1         4  
  1         28  
5 1     1   12 use warnings;
  1         14  
  1         49  
6 1     1   11 use File::BOM qw(open_bom);
  1         3  
  1         82  
7 1     1   8 use Parse::BBCode;
  1         2  
  1         11  
8              
9             our $VERSION = '0.30';
10              
11             sub parser {
12 2     2 0 9 my ($file, $encoding, $opts) = @_;
13 2         12 my $parse = Parse::BBCode->new;
14 2         2577 open_bom my $fh, $file, ":encoding($encoding)";
15 2         788 local $/;
16 2         61 my $html = $parse->render(<$fh>);
17 2 100       8018 return unless $html =~ /\S/;
18 1         6 utf8::encode($html);
19 1 50       5 return $html if $opts->{raw};
20 1         94 return qq{
21            
22            
23            
24            
25             $html
26            
27            
28             };
29              
30             }
31              
32             1;
33             __END__