The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pod::Weaver::Section::SeeAlso - add a SEE ALSO pod section

VERSION

  This document describes v0.004 of Pod::Weaver::Section::SeeAlso - released May 28, 2010 as part of Pod-Weaver-Section-SeeAlso.

DESCRIPTION

This section plugin will produce a hunk of pod that references the main module of a dist from it's submodules and adds any other text already present in the pod. It will do this only if it is being built with Dist::Zilla because it needs the data from the dzil object.

In the main module, this section plugin just transforms the links into a proper list. In the submodules, it also adds the link to the main module.

For an example of what the hunk looks like, look at the "SEE ALSO" section in this POD :)

WARNING: Please do not put any other POD commands in your SEE ALSO section!

What you should do when you want to add extra links is:

        =head1 SEE ALSO
        L<Foo::Bar>
        L<Bar::Baz>

And this module will automatically convert it into:

        =head1 SEE ALSO
        =over 4
        =item *
        L<Main::Module>
        =item *
        L<Foo::Bar>
        =item *
        L<Bar::Baz>
        =back

SEE ALSO

SUPPORT

You can find documentation for this module with the perldoc command.

  perldoc Pod::Weaver::Section::SeeAlso

Websites

Bugs

Please report any bugs or feature requests to bug-pod-weaver-section-seealso at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pod-Weaver-Section-SeeAlso. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

AUTHOR

  Apocalypse <APOCAL@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Apocalypse.

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

The full text of the license can be found in the LICENSE file included with this distribution.