line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Markdent::Role::Dialect::BlockParser; |
2
|
|
|
|
|
|
|
|
3
|
8
|
|
|
8
|
|
5769
|
use strict; |
|
8
|
|
|
|
|
21
|
|
|
8
|
|
|
|
|
260
|
|
4
|
8
|
|
|
8
|
|
47
|
use warnings; |
|
8
|
|
|
|
|
19
|
|
|
8
|
|
|
|
|
220
|
|
5
|
8
|
|
|
8
|
|
43
|
use namespace::autoclean; |
|
8
|
|
|
|
|
17
|
|
|
8
|
|
|
|
|
61
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.39'; |
8
|
|
|
|
|
|
|
|
9
|
8
|
|
|
8
|
|
667
|
use Moose::Role; |
|
8
|
|
|
|
|
17
|
|
|
8
|
|
|
|
|
57
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# ABSTRACT: A role for a dialect block parser |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__END__ |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=encoding UTF-8 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Markdent::Role::Dialect::BlockParser - A role for a dialect block parser |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 VERSION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
version 0.39 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 DESCRIPTION |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This role has no internals, it simply indicates that the role which consumes |
32
|
|
|
|
|
|
|
it is a block parser role. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 BUGS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
See L<Markdent> for bug reporting details. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 SOURCE |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 AUTHOR |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Dave Rolsky. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
55
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
The full text of the license can be found in the |
58
|
|
|
|
|
|
|
F<LICENSE> file included with this distribution. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |