|
podindex - build index from pods |
podindex - build index from pods
podindex [options] <pod(s)>...
Reads pod(s) and prints an index to stdout. Options:
--package=PACKAGE precede the index by a perl package declaration
--help this help
--version print version number
This is a simple wrapper script around the Pod::Index::Builder manpage. It parses the POD files given as arguments, finds all X<> entries, generates an index and prints it to standard output.
podindex --package=perlindex perlop.pod
outputs something like this:
package perlindex;
1;
__DATA__
! perlsyn 116 DESCRIPTION
! perlop 207 Symbolic Unary Operators
!= perlop 436 Equality Operators
!~ perlop 242 DESCRIPTION
This is used so that an index can be placed in @INC and found easily (See the Pod::Index::Search manpage).
the Pod::Index manpage, the Pod::Index::Builder manpage, the perlpod manpage
Ivan Tubert-Brohman <itub@cpan.org>
Copyright (c) 2005 Ivan Tubert-Brohman. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
podindex - build index from pods |