File Coverage

blib/lib/MojoMojo/Formatter/File/Text.pm
Criterion Covered Total %
statement 12 13 92.3
branch 1 2 50.0
condition n/a
subroutine 4 4 100.0
pod 2 2 100.0
total 19 21 90.4


line stmt bran cond sub pod time code
1             package MojoMojo::Formatter::File::Text;
2              
3 26     26   14795 use base qw/MojoMojo::Formatter/;
  26         68  
  26         2127  
4              
5 26     26   166 use MojoMojo::Formatter::Text;
  26         65  
  26         279  
6              
7              
8             =head1 NAME
9              
10             MojoMojo::Formatter::File::Pod - format Pod File in xhtml
11              
12             =head1 DESCRIPTION
13              
14              
15             =head1 METHODS
16              
17             =over 4
18              
19             =item can_format
20              
21             Can format Pod File
22              
23             =cut
24              
25             sub can_format {
26 1     1 1 2 my $self = shift;
27 1         2 my $type = shift;
28              
29 1 50       7 return 1 if ( $type eq "txt" );
30 0         0 return 0;
31             }
32              
33              
34             =item to_xhtml
35              
36             takes Text and renders it as XHTML.
37              
38             =cut
39              
40             sub to_xhtml {
41 2     2 1 6 my ( $self, $text ) = @_;
42 2         4 my $result;
43 2         14 return MojoMojo::Formatter::Text->to_xhtml( $text );
44             }
45              
46              
47              
48              
49             =back
50              
51             =head1 SEE ALSO
52              
53             L<MojoMojo>,L<Module::Pluggable::Ordered>
54              
55             =head1 AUTHORS
56              
57             Daniel Brosseau <dab@catapulse.org>
58              
59             =head1 LICENSE
60              
61             This module is licensed under the same terms as Perl itself.
62              
63             =cut
64              
65             1;