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             package Org::To::Role;
2              
3 4     4   326317 use 5.010001;
  4         15  
4 4     4   21 use strict;
  4         8  
  4         154  
5 4     4   23 use warnings;
  4         6  
  4         245  
6 4     4   3808 use Log::ger;
  4         71  
  4         31  
7              
8 4     4   1789 use Moo::Role;
  4         22697  
  4         28  
9 4     4   5179 use String::Escape qw/elide printable/;
  4         27988  
  4         1084  
10              
11             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
12             our $DATE = '2024-12-21'; # DATE
13             our $DIST = 'Org-To-HTML'; # DIST
14             our $VERSION = '0.237'; # 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.237 of Org::To::Role (from Perl distribution Org-To-HTML), released on 2024-12-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>,
80             L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
81             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
82             that are considered a bug and can be reported to me.
83              
84             =head1 COPYRIGHT AND LICENSE
85              
86             This software is copyright (c) 2024 by perlancar <perlancar@cpan.org>.
87              
88             This is free software; you can redistribute it and/or modify it under
89             the same terms as the Perl 5 programming language system itself.
90              
91             =head1 BUGS
92              
93             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Org-To-HTML>
94              
95             When submitting a bug or request, please include a test-file or a
96             patch to an existing test-file that illustrates the bug or desired
97             feature.
98              
99             =cut