The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Pod::ProjectDocs - generates CPAN like project documents from pod.

SYNOPSIS

#!/usr/bin/perl

use strict;
use warnings;

use Pod::ProjectDocs;

my $pd = Pod::ProjectDocs->new(
    libroot => '/your/project/lib/root',
    outroot => '/output/directory',
    title   => 'ProjectName',
);
$pd->gen();

# or use pod2projdocs on your shell
pod2projdocs -out /output/directory -lib /your/project/lib/root

DESCRIPTION

This module allows you to generates CPAN like pod pages from your modules for your projects. It also creates an optional index page.

OPTIONS

pod2projdocs

You can use the command line script pod2projdocs to generate your documentation without creating a custom perl script.

pod2projdocs -help

SEE ALSO

Pod::Simple::XHTML

AUTHORS

COPYRIGHT AND LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.