File Coverage

blib/lib/Acme/CPANModules/PodConverters.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Acme::CPANModules::PodConverters;
2              
3 1     1   422232 use strict;
  1         3  
  1         191  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2023-10-31'; # DATE
7             our $DIST = 'Acme-CPANModules-PodConverters'; # DIST
8             our $VERSION = '0.002'; # VERSION
9              
10             our $LIST = {
11             summary => "List of modules to convert POD to/from other formats",
12             description => <<'_',
13              
14              
15             _
16             entries => [
17             {module=>'POD::Text', summary=>'POD to formatted text', description=>'Distribution includes '},
18             {module=>'POD::Man' , summary=>'POD to formatted *roff input (Unix manpage)', description=>'Distribution includes '},
19             {module=>'Pod::Html', summary=>'POD to HTML', description=>'Distribution includes '},
20             {module=>'App::podtohtml', summary=>'Alternative CLI to convert POD to HTML', description=>'Distribution comes with . Fix some annoyances with Pod::Html/pod2html which leaves temporary files lying around in current directory. Add templates, sending HTML to browser, and tab completion.'},
21             {module=>'Pod::Simple::HTML', summary=>'Another module to convert POD to HTML'}, # XXX what's the diff with Pod::Html?
22             {module=>'Pod::Pdf', summary=>'POD to PDF'},
23             {module=>'Pod::Markdown', summary=>'POD to Markdown'},
24              
25             {module=>'Pod::HTML2Pod', summary=>'HTML to POD'},
26             {module=>'Markdown::Pod', summary=>'Markdown to POD', description=>'Have some annoyances so I created '},
27             {module=>'Markdown::To::POD', summary=>'Markdown to POD'},
28             {module=>'App::MarkdownUtils', summary=>'Contains CLI for converting Markdown to POD, '},
29             ],
30             };
31              
32             1;
33             # ABSTRACT: List of modules to convert POD to/from other formats
34              
35             __END__