line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Markdent::Event::AutoLink; |
2
|
|
|
|
|
|
|
|
3
|
35
|
|
|
35
|
|
247
|
use strict; |
|
35
|
|
|
|
|
71
|
|
|
35
|
|
|
|
|
981
|
|
4
|
35
|
|
|
35
|
|
179
|
use warnings; |
|
35
|
|
|
|
|
75
|
|
|
35
|
|
|
|
|
771
|
|
5
|
35
|
|
|
35
|
|
173
|
use namespace::autoclean; |
|
35
|
|
|
|
|
72
|
|
|
35
|
|
|
|
|
271
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.39'; |
8
|
|
|
|
|
|
|
|
9
|
35
|
|
|
35
|
|
2399
|
use Markdent::Types; |
|
35
|
|
|
|
|
88
|
|
|
35
|
|
|
|
|
306
|
|
10
|
|
|
|
|
|
|
|
11
|
35
|
|
|
35
|
|
848389
|
use Moose; |
|
35
|
|
|
|
|
102
|
|
|
35
|
|
|
|
|
378
|
|
12
|
35
|
|
|
35
|
|
245710
|
use MooseX::StrictConstructor; |
|
35
|
|
|
|
|
89
|
|
|
35
|
|
|
|
|
336
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has uri => ( |
15
|
|
|
|
|
|
|
is => 'ro', |
16
|
|
|
|
|
|
|
isa => t('Str'), |
17
|
|
|
|
|
|
|
required => 1, |
18
|
|
|
|
|
|
|
); |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
with 'Markdent::Role::Event' => { event_class => __PACKAGE__ }; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
# ABSTRACT: An event for auto-links |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__END__ |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=pod |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=encoding UTF-8 |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 NAME |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Markdent::Event::AutoLink - An event for auto-links |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 VERSION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
version 0.39 |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 DESCRIPTION |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This class represents an auto-link, like C<< <http://example.com> >>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This class has the following attributes: |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 uri |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The uri in the auto-link. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 ROLES |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
This class does the L<Markdent::Role::Event> role. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 BUGS |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
See L<Markdent> for bug reporting details. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 SOURCE |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 AUTHOR |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Dave Rolsky. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
79
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The full text of the license can be found in the |
82
|
|
|
|
|
|
|
F<LICENSE> file included with this distribution. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=cut |