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

NAME

Pod::Rtf

SYNOPSIS

    $parser = new Pod::Rtf();
    $parser->parse_from_filehandle(\*STDIN)  if (@ARGV == 0);
    for (@ARGV) {
       my $file = $_;
       $file =~ s/\..*$//;
       $Pod::Rtf::pound_note = $_;
       $Pod::Rtf::dollar_note = $file;
       $Pod::Rtf::K_note = $file;
       $parser->parse_from_file($_);
    }

DESCRIPTION

Uses Pod::Parser to convert pod documentation to Rich Text Format (rtf) suitable for compilation by a Windows Help compiler.

SEE ALSO

perl. Pod::Rtf, Pod::Parser.

AUTHOR

Peter Prymmer.