
Pod::PalmDoc - Convert POD Data to PalmDoc

use Pod::PalmDoc;
my $parser = Pod::PalmDoc->new();
$parser->compress(1);
$parser->title("POD Foo");
$parser->parse_from_file($ARGV[0],"foo.pdb");
-or-
use Pod::PalmDoc;
my $parser = Pod::PalmDoc->new();
$parser->compress(1);
$parser->title("POD Foo");
open(FOO,">foo.pdb") || die $!;
$parser->parse_from_filehandle(\*STDIN, \*FOO);
close(FOO);
-or-
use Pod::PalmDoc;
my $parser = Pod::PalmDoc->new();
$parser->compress(1);
$parser->title("POD Foo");
open(FOO,"<Pod/PalmDoc.pm") || die $!;
open(BAR,">foo.pdb") || die $!;
$parser->parse_from_filehandle(\*FOO, \*BAR);
close(FOO);
close(BAR);

This module converts POD (Plain Old Documentation) to PalmDoc format. It uses Palm::PalmDoc and inherits most of its methods from Pod::Parser.

Future releases probably will inherit from Pod::Select instead of Pod::Parser.

This code is released under GPL (GNU Public License). More information can be found on http://www.gnu.org/copyleft/gpl.html

This is Pod::PalmDoc 0.0.2.

Hendrik Van Belleghem (beatnik@quickndirty.org)

GNU & GPL - http://www.gnu.org/copyleft/gpl.html