Skip Menu |

This queue is for tickets about the HTML-BBReverse CPAN distribution.

Report information
The Basics
Id: 16403
Status: resolved
Priority: 0/
Queue: HTML-BBReverse

People
Owner: yorhel [...] cpan.org
Requestors: blom [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.02
Fixed in: 0.03



Subject: Uppercase tags are ignored
Uppercase tags (or mixed case tags) are ignored: #!/usr/bin/perl use strict; use HTML::BBReverse; my $text = "[B]no bold[/B]\n[b]bold[/b]\n[b]no bold[/B]"; my $bbr = HTML::BBReverse->new(); print $bbr->parse($text); __END__