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

NAME

main - Commandline util for App::CommentToPod

VERSION

version 0.001

SYNOPSIS

comment2pod [options]

Options:

 --help  - Brief usage help
 --man   - Full ducumentation
 --empty-stubs - generate general pod section of subroutines without comment.

DESCRIPTION

Example:

    cat foo.pm | comment2pod

change the source file

    cat foo.pm | comment2pod | sponge foo.pm

see App::CommentToPod

USAGE

--help

Print a brief usage message and exit

--man

Print this manual and exit

--empty-stubs

Add a pod document over functions which is undocumented (does not contain a comment

    sub foo{
        my $self = shift:

becomes:

   =item C<foo>
   foo(...) // not documented
      sub foo{
         my $self =shift;
      ...
   =back
   sub foo{

EXAMPLE

    cat foo.pm | comment2pod

AUTHOR

Kjell Kvinge <kjell@kvinge.biz>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019 by Kjell Kvinge.

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