
Pod::BBCode - converts a POD file to a page using BB code.

use Pod::BBCode;
my $p = new Pod::BBCode(-headcolor=>'red',-itemcolor=>'blue',-textcolor=>'black');
$p->parse_from_file('in.pod');

This class converts a file in POD syntax to the BBCode syntax, in order to simplify the posting process on vBulletin forums. See any vBulletin forum's help for a description of the BBCode syntax.
Pod::BBCode derives from Pod::Parser and therefore inherits all its methods.
This module was modified from Pod::TikiWiki module. Thanks to the original author.
=head[1234]) are handled with [size][/size] tag.
=head1 NAME --> [size=5]NAME[/size]
=head2 Methods --> [size=4]Methods[/size]
=over [list]
=item *
--> [*]
Text Text
=over [list=1]
=item 1
--> [*]
Text Text
=back [/list]
=back [/list]
Items with a string are rendered into a asterisked list
=item Text
--> [*]Text
Definition Definition
B, I, F and C are honored. Both F and C are rendered as monospaced text.
B<bold> --> [b]bold[/b]
I<italic> --> [i]italic[/i]
F<file> --> [pre]file[/pre]
C<code> --> [pre]code[/pre]

S, L, X, E are ignored.

chaoslawful (chaoslaw@cpan.org)
This module is free software. You can redistribute and/or modify it under the terms of the GNU General Public License.
Thanks to the author of Pod::TikiWiki again!