Pod::TOC - Extract a table of contents from a Pod file


Pod-Perldoc-ToToc documentation  | view source Contained in the Pod-Perldoc-ToToc distribution.

Index


NAME

Top

Pod::TOC - Extract a table of contents from a Pod file

SYNOPSIS

Top

This is a Pod::Simple subclass, so it can do the same things.

	use Pod::TOC;

	my $parser = Pod::TOC->new;

	my $toc;
	open my($output_fh), ">", \$toc;

	$parser->output_fh( $output_fh );

	$parser->parse_file( $input_file );

DESCRIPTION

Top

This is a Pod::Simple subclass to extract a table of contents from a pod file. It has the same interface as Pod::Simple, and only changes the internal bits.

SEE ALSO

Top

Pod::Perldoc::ToToc, Pod::Simple

SOURCE AVAILABILITY

Top

This source is part of a Google Code project which always has the latest sources in SVN.

	http://code.google.com/p/brian-d-foy/source

If, for some reason, I disappear from the world, one of the other members of the project can shepherd this module appropriately.

AUTHOR

Top

brian d foy, <bdfoy@cpan.org>

COPYRIGHT AND LICENSE

Top


Pod-Perldoc-ToToc documentation  | view source Contained in the Pod-Perldoc-ToToc distribution.