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