File Coverage

blib/lib/Markdown/Simple.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Markdown::Simple;
2              
3 40     40   3585917 use 5.006;
  40         146  
4 40     40   187 use strict;
  40         148  
  40         1035  
5 40     40   177 use warnings;
  40         102  
  40         2461  
6             our $VERSION = '0.15';
7 40     40   181 use Exporter ();
  40         113  
  40         3125  
8             our @ISA = qw(Exporter);
9              
10             require XSLoader;
11             XSLoader::load('Markdown::Simple', $Markdown::Simple::VERSION);
12              
13             our @EXPORT = qw/markdown_to_html strip_markdown/;
14              
15             1;
16              
17             __END__