HTML::BBCode - Perl extension for converting BBcode to HTML.
use HTML::BBCode;
my $bbc = HTML::BBCode->new( \%options );
my $html = $bbc->parse($bbcode);
# Input
print $bbc->{bbcode};
# Output
print $bbc->{html};
HTML::BBCode converts BBCode -as used on the phpBB bulletin boards- to its HTML equivalent.
The following methods can be used
my $bbc = HTML::BBCode->new({
allowed_tags => [ @bbcode_tags ],
stripscripts => 1,
linebreaks => 1,
});
new creates a new HTML::BBCode object using the configuration passed to it. The object's default configuration allows all BBCode to be converted to the default HTML.
Defaults to all currently know BBCode tags, being: b, u, i, color, size, quote, code, list, url, email, img. With this option, you can specify what BBCode tags you would like to convert.
Enabled by default, this option will remove all the XSS trickery (and thus is probably best not to turn it off).
This option has been removed since version 2.0
This option has been removed since version 2.0
Disabled by default.
When true, will substitute linebreaks into HTML ('<br />')
my $html = $bbc->parse($bbcode);
Parses text supplied as a single scalar string and returns the HTML as a single scalar string.
Please do note that the html_tags, no_html, no_jslink options in the new method have been removed since version 2.0 due to the XSS protection (provided by HTML::StripScripts::Parser). This will most likely break your current scripts (if you used the html_tags option).
Bugs? Impossible!. Please report bugs to http://rt.cpan.org/Ticket/Create.html?Queue=HTML-BBCode.
M. Blom, <blom@cpan.org>
Copyright (C) 2004-2008 by M. Blom
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.