File Coverage

blib/lib/Text/Markup/Textile.pm
Criterion Covered Total %
statement 25 25 100.0
branch 3 4 75.0
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 34 36 94.4


line stmt bran cond sub pod time code
1             package Text::Markup::Textile;
2              
3 1     1   34802 use 5.8.1;
  1         4  
4 1     1   6 use strict;
  1         2  
  1         20  
5 1     1   5 use warnings;
  1         2  
  1         28  
6 1     1   6 use File::BOM qw(open_bom);
  1         3  
  1         50  
7 1     1   5 use Text::Textile 2.10;
  1         15  
  1         230  
8              
9             our $VERSION = '0.31';
10              
11             sub parser {
12 2     2 0 6 my ($file, $encoding, $opts) = @_;
13 2         4 my %params = @{ $opts };
  2         4  
14 2         11 my $textile = Text::Textile->new(
15             charset => 'utf-8',
16             char_encoding => 0,
17             trim_spaces => 1,
18             %params,
19             );
20 2         356 open_bom my $fh, $file, ":encoding($encoding)";
21 2         564 local $/;
22 2         56 my $html = $textile->process(<$fh>);
23 2 100       4450 return unless $html =~ /\S/;
24 1         4 utf8::encode($html);
25 1 50       3 return $html if $params{raw};
26 1         52 return qq{
27            
28            
29            
30            
31             $html
32            
33            
34             };
35              
36             }
37              
38             1;
39             __END__