Provided by: libpod-weaver-perl_4.018-1_all bug

NAME

       Pod::Weaver - weave together a Pod document from an outline

VERSION

       version 4.018

SYNOPSIS

         my $weaver = Pod::Weaver->new_with_default_config;

         my $document = $weaver->weave_document({
           pod_document => $pod_elemental_document,
           ppi_document => $ppi_document,

           license  => $software_license,
           version  => $version_string,
           authors  => \@author_names,
         })

DESCRIPTION

       Pod::Weaver is a system for building Pod documents from templates.  It doesn't perform
       simple text substitution, but instead builds a Pod::Elemental::Document.  Its plugins
       sketch out a series of sections that will be produced based on an existing Pod document or
       other provided information.

PERL VERSION SUPPORT

       This module has the same support period as perl itself:  it supports the two most recent
       versions of perl.  (That is, if the most recently released version is v5.40, then this
       module should work on both v5.40 and v5.38.)

       Although it may work on older versions of perl, no guarantee is made that the minimum
       required version will not be increased.  The version may be increased for any reason, and
       there is no promise that patches will be accepted to lower the minimum required perl.

ATTRIBUTES

   logger
       This attribute stores the logger, which must provide a log method.  The weaver's log
       method delegates to the logger's log method.

   plugins
       This attribute is an arrayref of objects that can perform the Pod::Weaver::Role::Plugin
       role.  In general, its contents are found through the "plugins_with" method.

METHODS

   plugins_with
         my $plugins_array_ref = $weaver->plugins_with('-Section');

       This method will return an arrayref of plugins that perform the given role, in the order
       of their registration.  If the role name begins with a hyphen, the method will prepend
       "Pod::Weaver::Role::".

   weave_document
         my $document = $weaver->weave_document(\%input);

       This is the most important method in Pod::Weaver.  Given a set of input parameters, it
       will weave a new document.  Different section plugins will expect different input
       parameters to be present, but some common ones include:

         pod_document - a Pod::Elemental::Document for the original Pod document
         ppi_document - a PPI document for the source of the module being documented
         license      - a Software::License object for the source module's license
         version      - a version (string) to use in produced documentation

       The "pod_document" should have gone through a Pod5 transformer, and should probably have
       had its "=head1" elements nested.

       The method will return a new Pod::Elemental::Document.  The input documents may be
       destructively altered during the weaving process.  If they should be untouched, pass in
       copies.

   new_with_default_config
       This method returns a new Pod::Weaver with a stock configuration by using only
       Pod::Weaver::PluginBundle::Default.

AUTHOR

       Ricardo SIGNES <rjbs@semiotic.systems>

CONTRIBUTORS

       •   Alex Peters <lxp@cpan.org>

       •   Apocalypse <perl@0ne.us>

       •   Blabos de Blebe <blabos@cpan.org>

       •   Caleb Cushing <xenoterracide@gmail.com>

       •   Christian Walde <walde.christian@googlemail.com>

       •   Christopher J. Madsen <perl@cjmweb.net>

       •   Chris Weyl <cweyl@alumni.drew.edu>

       •   Dave Houston <dave.houston@gmail.com>

       •   Dave Rolsky <autarch@urth.org>

       •   David E. Wheeler <david@justatheory.com>

       •   David Golden <dagolden@cpan.org>

       •   David Miguel Susano Pinto <carandraug+dev@gmail.com>

       •   David Zurborg <post@david-zurb.org>

       •   Doug Bell <doug@preaction.me>

       •   Florian Ragwitz <rafl@debian.org>

       •   Jonathan "Duke" Leto <jonathan@leto.net>

       •   Joshua Keroes <joshua.keroes@integratelecom.com>

       •   Karen Etheridge <ether@cpan.org>

       •   Kent Fredric <kentfredric@gmail.com>

       •   Kivanc Yazan <kyzn@cpan.org>

       •   Marcel Gruenauer <hanekomu@gmail.com>

       •   Randy Stauner <randy@magnificent-tears.com>

       •   Sam Graham <git@illusori.co.uk>

       •   Shlomi Fish <shlomif@shlomifish.org>

COPYRIGHT AND LICENSE

       This software is copyright (c) 2021 by Ricardo SIGNES.

       This is free software; you can redistribute it and/or modify it under the same terms as
       the Perl 5 programming language system itself.