File Coverage

lib/MKDoc/Text/Structured/H3.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package MKDoc::Text::Structured::H3;
2 20     20   133 use MKDoc::Text::Structured::Inline;
  20         35  
  20         581  
3 20     20   101 use warnings;
  20         39  
  20         779  
4 20     20   99 use strict;
  20         35  
  20         2177  
5              
6              
7             sub process
8             {
9 3     3 0 5 my $self = shift;
10 3         7 my $text = join "\n", @{$self->{lines}};
  3         15  
11 3         11 $text = MKDoc::Text::Structured::Inline::process ($text);
12 3         15 return "

$text

";
13             }
14              
15              
16             1;
17              
18              
19             __END__