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             our $DATE = '2020-09-11'; # DATE
4             our $VERSION = '0.233'; # VERSION
5              
6 2     2   19580 use 5.010;
  2         20  
7 2     2   12 use strict;
  2         4  
  2         42  
8 2     2   9 use warnings;
  2         8  
  2         72  
9 2     2   14 use Log::ger;
  2         3  
  2         15  
10              
11 2     2   525 use Moo::Role;
  2         6  
  2         20  
12 2     2   1838 use String::Escape qw/elide printable/;
  2         12157  
  2         354  
13              
14             requires 'export_document';
15             requires 'export_block';
16             requires 'export_fixed_width_section';
17             requires 'export_comment';
18             requires 'export_drawer';
19             requires 'export_footnote';
20             requires 'export_headline';
21             requires 'export_list';
22             requires 'export_list_item';
23             requires 'export_radio_target';
24             requires 'export_setting';
25             requires 'export_table';
26             requires 'export_table_row';
27             requires 'export_table_cell';
28             requires 'export_table_vline';
29             requires 'export_target';
30             requires 'export_text';
31             requires 'export_time_range';
32             requires 'export_timestamp';
33             requires 'export_link';
34              
35             1;
36             # ABSTRACT: Role for Org exporters
37              
38             __END__
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.233 of Org::To::Role (from Perl distribution Org-To-HTML), released on 2020-09-11.
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 BUGS
61              
62             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Org-To-HTML>
63              
64             When submitting a bug or request, please include a test-file or a
65             patch to an existing test-file that illustrates the bug or desired
66             feature.
67              
68             =head1 AUTHOR
69              
70             perlancar <perlancar@cpan.org>
71              
72             =head1 COPYRIGHT AND LICENSE
73              
74             This software is copyright (c) 2020, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011 by perlancar@cpan.org.
75              
76             This is free software; you can redistribute it and/or modify it under
77             the same terms as the Perl 5 programming language system itself.
78              
79             =cut