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
AUTHOR
Peter Prymmer.