NAME
main - Commandline util for App::CommentToPod
VERSION
version 0.002
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
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.