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

NAME

Pod::Stream::Parser - A simple stream based POD parser

SYNOPSIS

  use v6;
  require Pod::Stream::Parser;
  
  parse("path/to/file.pod", %event_handlers);

DESCRIPTION

This is a very simple stream based POD parser, it is modeled after SAX style parsers and is currently still in the very early stages of development.

LIMITATIONS & CAVEATS

Functionality is severaly limited right now. See the tests for more details.

FUNCTIONS

parse (Str $filename, Hash %event_handlers)

The main parse function currently takes a $filename and a Hash of %event_handlers which it uses to process each line of the file.

SEE ALSO

Any of the Perl5 POD parsers

AUTHOR

stevan little, <stevan@iinteractive.com>

COPYRIGHT

Copyright (c) 2005. Stevan Little. All rights reserved.

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

See http://www.perl.com/perl/misc/Artistic.html