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 8     8   949617 use 5.006;
  8         31  
4 8     8   45 use strict;
  8         50  
  8         254  
5 8     8   55 use warnings;
  8         26  
  8         654  
6             our $VERSION = '0.11';
7 8     8   3557 use parent qw(Exporter);
  8         2344  
  8         47  
8              
9             require XSLoader;
10             XSLoader::load('Markdown::Simple', $Markdown::Simple::VERSION);
11              
12             our @EXPORT = qw/markdown_to_html strip_markdown/;
13              
14             1;
15              
16             __END__