line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Pod::Elemental::Element::Generic::Text 0.103006; |
2
|
|
|
|
|
|
|
# ABSTRACT: a Pod text or verbatim element |
3
|
|
|
|
|
|
|
|
4
|
15
|
|
|
15
|
|
6473
|
use Moose; |
|
15
|
|
|
|
|
33
|
|
|
15
|
|
|
|
|
90
|
|
5
|
|
|
|
|
|
|
with 'Pod::Elemental::Flat'; |
6
|
|
|
|
|
|
|
|
7
|
15
|
|
|
15
|
|
85012
|
use namespace::autoclean; |
|
15
|
|
|
|
|
59
|
|
|
15
|
|
|
|
|
110
|
|
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.103006 |
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 PERL VERSION |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This library should run on perls released even a long time ago. It should work |
46
|
|
|
|
|
|
|
on any version of perl released in the last five years. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
49
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
50
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
51
|
|
|
|
|
|
|
the minimum required perl. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 AUTHOR |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Ricardo SIGNES <cpan@semiotic.systems> |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
62
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |