File Coverage

blib/lib/Text/Markup/Markdown.pm
Criterion Covered Total %
statement 23 23 100.0
branch 4 6 66.6
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 33 36 91.6


line stmt bran cond sub pod time code
1             package Text::Markup::Markdown;
2              
3 1     1   30021 use 5.8.1;
  1         4  
4 1     1   6 use strict;
  1         2  
  1         25  
5 1     1   6 use warnings;
  1         2  
  1         34  
6 1     1   5 use File::BOM qw(open_bom);
  1         2  
  1         65  
7 1     1   9 use Text::Markdown ();
  1         8  
  1         220  
8              
9             our $VERSION = '0.30';
10              
11             sub parser {
12 2     2 0 10 my ($file, $encoding, $opts) = @_;
13 2 50       3 my $md = Text::Markdown->new(@{ $opts || [] });
  2         21  
14 2         64 open_bom my $fh, $file, ":encoding($encoding)";
15 2         1919 my $html = $md->markdown(join '', <$fh>);
16 2 100       34898 return unless $html =~ /\S/;
17 1         6 utf8::encode($html);
18 1 50       3 return $html if $opts->{raw};
19 1         44 return qq{
20            
21            
22            
23            
24             $html
25            
26            
27             };
28              
29             }
30              
31             1;
32             __END__