File Coverage

blib/lib/Markdent/Role/Dialect/BlockParser.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Markdent::Role::Dialect::BlockParser;
2              
3 7     7   5100 use strict;
  7         20  
  7         251  
4 7     7   41 use warnings;
  7         17  
  7         197  
5 7     7   43 use namespace::autoclean;
  7         31  
  7         52  
6              
7             our $VERSION = '0.38';
8              
9 7     7   620 use Moose::Role;
  7         19  
  7         50  
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.38
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) 2020 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