line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Markdent::Event::StartTableBody; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
33
|
use strict; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
141
|
|
4
|
4
|
|
|
4
|
|
21
|
use warnings; |
|
4
|
|
|
|
|
20
|
|
|
4
|
|
|
|
|
112
|
|
5
|
4
|
|
|
4
|
|
22
|
use namespace::autoclean; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
29
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.40'; |
8
|
|
|
|
|
|
|
|
9
|
4
|
|
|
4
|
|
386
|
use Markdent::Types; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
36
|
|
10
|
|
|
|
|
|
|
|
11
|
4
|
|
|
4
|
|
105682
|
use Moose; |
|
4
|
|
|
|
|
14
|
|
|
4
|
|
|
|
|
46
|
|
12
|
4
|
|
|
4
|
|
28364
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
34
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
with 'Markdent::Role::Event' => { event_class => __PACKAGE__ }; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# ABSTRACT: An event for the start of a table body |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=pod |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=encoding UTF-8 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 NAME |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Markdent::Event::StartTableBody - An event for the start of a table body |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 VERSION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
version 0.40 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This class represents the start of a table body. A table can have more than one |
39
|
|
|
|
|
|
|
body. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 ROLES |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This class does the L<Markdent::Role::Event> role. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 BUGS |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
See L<Markdent> for bug reporting details. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 SOURCE |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 AUTHOR |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Dave Rolsky. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
66
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The full text of the license can be found in the |
69
|
|
|
|
|
|
|
F<LICENSE> file included with this distribution. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=cut |