line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Pod::Elemental::Element::Pod5::Verbatim; |
2
|
|
|
|
|
|
|
# ABSTRACT: a Pod verbatim paragraph |
3
|
|
|
|
|
|
|
$Pod::Elemental::Element::Pod5::Verbatim::VERSION = '0.103005'; |
4
|
11
|
|
|
11
|
|
88
|
use Moose; |
|
11
|
|
|
|
|
27
|
|
|
11
|
|
|
|
|
84
|
|
5
|
|
|
|
|
|
|
extends 'Pod::Elemental::Element::Generic::Text'; |
6
|
|
|
|
|
|
|
with 'Pod::Elemental::Autoblank'; |
7
|
|
|
|
|
|
|
with 'Pod::Elemental::Autochomp'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# BEGIN Autochomp Replacement |
10
|
11
|
|
|
11
|
|
74708
|
use Pod::Elemental::Types qw(ChompedString); |
|
11
|
|
|
|
|
34
|
|
|
11
|
|
|
|
|
102
|
|
11
|
|
|
|
|
|
|
has '+content' => (coerce => 1, isa => ChompedString); |
12
|
|
|
|
|
|
|
# END Autochomp Replacement |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
#pod =head1 OVERVIEW |
15
|
|
|
|
|
|
|
#pod |
16
|
|
|
|
|
|
|
#pod Pod5::Verbatim elements represent "verbatim" paragraphs of text. These are |
17
|
|
|
|
|
|
|
#pod ordinary, flat paragraphs of text that were indented in the source Pod to |
18
|
|
|
|
|
|
|
#pod indicate that they should be represented verbatim in formatted output. The |
19
|
|
|
|
|
|
|
#pod following paragraph is a verbatim paragraph: |
20
|
|
|
|
|
|
|
#pod |
21
|
|
|
|
|
|
|
#pod This is a verbatim |
22
|
|
|
|
|
|
|
#pod paragraph |
23
|
|
|
|
|
|
|
#pod right here. |
24
|
|
|
|
|
|
|
#pod |
25
|
|
|
|
|
|
|
#pod =cut |
26
|
|
|
|
|
|
|
|
27
|
11
|
|
|
11
|
|
13467
|
use namespace::autoclean; |
|
11
|
|
|
|
|
35
|
|
|
11
|
|
|
|
|
108
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
__END__ |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=pod |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=encoding UTF-8 |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 NAME |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Pod::Elemental::Element::Pod5::Verbatim - a Pod verbatim paragraph |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 VERSION |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
version 0.103005 |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 OVERVIEW |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Pod5::Verbatim elements represent "verbatim" paragraphs of text. These are |
50
|
|
|
|
|
|
|
ordinary, flat paragraphs of text that were indented in the source Pod to |
51
|
|
|
|
|
|
|
indicate that they should be represented verbatim in formatted output. The |
52
|
|
|
|
|
|
|
following paragraph is a verbatim paragraph: |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This is a verbatim |
55
|
|
|
|
|
|
|
paragraph |
56
|
|
|
|
|
|
|
right here. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 AUTHOR |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Ricardo SIGNES <rjbs@cpan.org> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
This software is copyright (c) 2020 by Ricardo SIGNES. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
67
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=cut |