line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Org::To::Role; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
14490
|
use 5.010; |
|
2
|
|
|
|
|
8
|
|
4
|
2
|
|
|
2
|
|
20
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
37
|
|
5
|
2
|
|
|
2
|
|
7
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
50
|
|
6
|
2
|
|
|
2
|
|
7
|
use Log::ger; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
11
|
|
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
350
|
use Moo::Role; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
13
|
|
9
|
2
|
|
|
2
|
|
1380
|
use String::Escape qw/elide printable/; |
|
2
|
|
|
|
|
9006
|
|
|
2
|
|
|
|
|
342
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
12
|
|
|
|
|
|
|
our $DATE = '2022-01-21'; # DATE |
13
|
|
|
|
|
|
|
our $DIST = 'Org-To-HTML'; # DIST |
14
|
|
|
|
|
|
|
our $VERSION = '0.234'; # VERSION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
requires 'export_document'; |
17
|
|
|
|
|
|
|
requires 'export_block'; |
18
|
|
|
|
|
|
|
requires 'export_fixed_width_section'; |
19
|
|
|
|
|
|
|
requires 'export_comment'; |
20
|
|
|
|
|
|
|
requires 'export_drawer'; |
21
|
|
|
|
|
|
|
requires 'export_footnote'; |
22
|
|
|
|
|
|
|
requires 'export_headline'; |
23
|
|
|
|
|
|
|
requires 'export_list'; |
24
|
|
|
|
|
|
|
requires 'export_list_item'; |
25
|
|
|
|
|
|
|
requires 'export_radio_target'; |
26
|
|
|
|
|
|
|
requires 'export_setting'; |
27
|
|
|
|
|
|
|
requires 'export_table'; |
28
|
|
|
|
|
|
|
requires 'export_table_row'; |
29
|
|
|
|
|
|
|
requires 'export_table_cell'; |
30
|
|
|
|
|
|
|
requires 'export_table_vline'; |
31
|
|
|
|
|
|
|
requires 'export_target'; |
32
|
|
|
|
|
|
|
requires 'export_text'; |
33
|
|
|
|
|
|
|
requires 'export_time_range'; |
34
|
|
|
|
|
|
|
requires 'export_timestamp'; |
35
|
|
|
|
|
|
|
requires 'export_link'; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |
38
|
|
|
|
|
|
|
# ABSTRACT: Role for Org exporters |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
__END__ |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=pod |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=encoding UTF-8 |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 NAME |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Org::To::Role - Role for Org exporters |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 VERSION |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This document describes version 0.234 of Org::To::Role (from Perl distribution Org-To-HTML), released on 2022-01-21. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 HOMEPAGE |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Please visit the project's homepage at L<https://metacpan.org/release/Org-To-HTML>. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 SOURCE |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Source repository is at L<https://github.com/perlancar/perl-Org-To-HTML>. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 AUTHOR |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
perlancar <perlancar@cpan.org> |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 CONTRIBUTING |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
To contribute, you can send patches by email/via RT, or send pull requests on |
70
|
|
|
|
|
|
|
GitHub. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Most of the time, you don't need to build the distribution yourself. You can |
73
|
|
|
|
|
|
|
simply modify the code, then test via: |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
% prove -l |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
If you want to build the distribution (e.g. to try to install it locally on your |
78
|
|
|
|
|
|
|
system), you can install L<Dist::Zilla>, |
79
|
|
|
|
|
|
|
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>, and sometimes one or two other |
80
|
|
|
|
|
|
|
Dist::Zilla plugin and/or Pod::Weaver::Plugin. Any additional steps required |
81
|
|
|
|
|
|
|
beyond that are considered a bug and can be reported to me. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
This software is copyright (c) 2022, 2020, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011 by perlancar <perlancar@cpan.org>. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
88
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 BUGS |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Org-To-HTML> |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
95
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
96
|
|
|
|
|
|
|
feature. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=cut |