File Coverage

blib/lib/Org/To/Role.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


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