
Pod::TikiWiki - converts a POD file to a TikiWiki page.

use Pod::TikiWiki;
my $p = new Pod::TikiWiki;
$p->parse_from_file('in.pod');

This class converts a file in POD syntax to the TikiWiki syntax. See http://tikiwiki.org/tiki-index.php?page=WikiSyntax for a description of the syntax.
Pod::TikiWiki derives from Pod::Parser and therefore inherits all its methods.
=head[1234]) are handled with the appropriate number of bangs.
=head1 NAME --> !NAME
=head2 Methods --> !!Methods
#, for ordered lists) or asterisks (*, for unordered lists).
=over
=item *
--> * Text
Text
=over
=item 1
--> ## Text
Text
=back
=back
Items with a string are rendered into a definition list, the definition being the next paragraph
=item Text
--> ;Text: Definition
Definition
B, I, F, and C are honored. Both F and C are rendered as monospaced text.
B<bold> --> __bold__
I<italic> --> ''italic''
F<file> --> -+file+-
C<code> --> -+code+-

S, L, X, E are ignored.

Copyright © 2004 Cédric Bouvier <cbouvi@cpan.org>
This module is free software. You can redistribute and/or modify it under the terms of the GNU General Public License.