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

NAME

Pod::Event::Handler::POD - A collection of POD event handlers for Pod::Event::Parser

SYNOPSIS

  use v6;
  use Pod::Event::Parser;
  use Pod::Event::Handler::POD;
  
  parse("path/to/file.pod", pod2pod($str_buffer));
  
  parse("path/to/file.pod", pod2pod($fh));  

DESCRIPTION

This is a collection of event handlers for use with Pod::Event::Parser which will perform POD roundtripping.

FUNCTIONS

pod2pod (Str $buffer is rw) =item pod2pod (IO $fh)

Returns a hash of event handlers for Pod::Event::Parser.

You can either pass in a string $buffer which will get the POD appended to it, or you can pass in a filehandle $fh which the POD will be printed too.

SEE ALSO

Pod::Event::Parser

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