BBCode-Parser
view release on metacpan or search on metacpan
lib/BBCode/Tag.pm view on Meta::CPAN
warning is raised. In the future, this behavior will likely change.
=head3 body
# Iterate over all this tag's immediate children
my @body = $tag->body();
foreach my $subtag (@body) { ...; }
# Forcibly add a new child, overriding $tag->isPermitted()
my $body = $tag->body();
my $bold = BBCode::Tag->new($tag->parser(), 'B');
push @$body, $bold;
Returns the list of child tags for this tag. In list context, returns
a list; otherwise, returns an array reference.
CAUTION: The reference returned in scalar context is a direct pointer to a
C<BBCode::Tag> internal structure. It is possible to bypass checks on
security and correctness by altering it directly.
=head3 bodyHTML
( run in 0.846 second using v1.01-cache-2.11-cpan-39bf76dae61 )