
Backend/Func/BbCode.pm - Parse bbCode from a string of text
This function parses bbCode tags from a string of text, and returns the HTML equivalent.
$ret .= $self->BbCode($content_string [, $fid ]);
Example
my $cont = "[b]Bold [i]Italic [u]Underlined[/u][/i][/b]";
$ret .= $self->BbCode($cont);
|