File Coverage

blib/lib/Markdent/Event/StartHTMLTag.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Markdent::Event::StartHTMLTag;
2              
3 35     35   274 use strict;
  35         87  
  35         1174  
4 35     35   207 use warnings;
  35         75  
  35         1096  
5 35     35   203 use namespace::autoclean;
  35         73  
  35         304  
6              
7             our $VERSION = '0.39';
8              
9 35     35   3462 use Markdent::Types;
  35         100  
  35         330  
10              
11 35     35   852401 use Moose;
  35         101  
  35         384  
12 35     35   243767 use MooseX::StrictConstructor;
  35         88  
  35         321  
13              
14             has tag => (
15             is => 'ro',
16             isa => t('Str'),
17             required => 1,
18             );
19              
20             has attributes => (
21             is => 'ro',
22             isa => t('HashRef'),
23             default => sub { {} },
24             );
25              
26             with 'Markdent::Role::Event' => { event_class => __PACKAGE__ };
27              
28             __PACKAGE__->meta->make_immutable;
29              
30             1;
31              
32             # ABSTRACT: An event for the start of an inline HTML tag
33              
34             __END__
35              
36             =pod
37              
38             =encoding UTF-8
39              
40             =head1 NAME
41              
42             Markdent::Event::StartHTMLTag - An event for the start of an inline HTML tag
43              
44             =head1 VERSION
45              
46             version 0.39
47              
48             =head1 DESCRIPTION
49              
50             This class represents the start of an inline HTML tag.
51              
52             =head1 ATTRIBUTES
53              
54             This class has the following attributes:
55              
56             =head2 tag
57              
58             The tag that is starting.
59              
60             =head2 attributes
61              
62             A hash reference of attributes as key/value pairs. An attribute without a
63             value will have a value of C<undef> in the hash reference.
64              
65             =head1 ROLES
66              
67             This class does the L<Markdent::Role::Event> role.
68              
69             =head1 BUGS
70              
71             See L<Markdent> for bug reporting details.
72              
73             Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>.
74              
75             I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>.
76              
77             =head1 SOURCE
78              
79             The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>.
80              
81             =head1 AUTHOR
82              
83             Dave Rolsky <autarch@urth.org>
84              
85             =head1 COPYRIGHT AND LICENSE
86              
87             This software is copyright (c) 2021 by Dave Rolsky.
88              
89             This is free software; you can redistribute it and/or modify it under
90             the same terms as the Perl 5 programming language system itself.
91              
92             The full text of the license can be found in the
93             F<LICENSE> file included with this distribution.
94              
95             =cut