File Coverage

blib/lib/Pod/Elemental/Element/Generic/Text.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Pod::Elemental::Element::Generic::Text;
2             # ABSTRACT: a Pod text or verbatim element
3             $Pod::Elemental::Element::Generic::Text::VERSION = '0.103005';
4 15     15   6835 use Moose;
  15         41  
  15         93  
5             with 'Pod::Elemental::Flat';
6              
7 15     15   97134 use namespace::autoclean;
  15         40  
  15         103  
8              
9             #pod =head1 OVERVIEW
10             #pod
11             #pod Generic::Text elements represent text paragraphs found in raw Pod. They are
12             #pod likely to be fed to a Pod5 translator and converted to ordinary, verbatim, or
13             #pod data paragraphs in that dialect. Otherwise, Generic::Text paragraphs are
14             #pod simple flat paragraphs.
15             #pod
16             #pod =cut
17              
18             __PACKAGE__->meta->make_immutable;
19              
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Pod::Elemental::Element::Generic::Text - a Pod text or verbatim element
31              
32             =head1 VERSION
33              
34             version 0.103005
35              
36             =head1 OVERVIEW
37              
38             Generic::Text elements represent text paragraphs found in raw Pod. They are
39             likely to be fed to a Pod5 translator and converted to ordinary, verbatim, or
40             data paragraphs in that dialect. Otherwise, Generic::Text paragraphs are
41             simple flat paragraphs.
42              
43             =head1 AUTHOR
44              
45             Ricardo SIGNES <rjbs@cpan.org>
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2020 by Ricardo SIGNES.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut