Skip Menu |

This queue is for tickets about the Parse-BBCode CPAN distribution.

Maintainer(s)' notes

If you have any wishes, feel free to create a ticket.

Plans:

I would like to add callbacks to the parser so that you can gather some information about specific tags and ideally can manipulate them during parsing.

But there are already enough informations to create a download link for code tags, for example. See example/code_download.pl.

Parse::BBCode is now hosted on github, so for bug reports also check https://github.com/perlpunk/Parse-BBCode

Report information
The Basics
Id: 42781
Status: resolved
Priority: 0/
Queue: Parse-BBCode

People
Owner: Nobody in particular
Requestors: harv [...] ruin.nu
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: 0.07



Subject: Caseinsentitivity doesn't work for closing tag
The following works just fine: [b]test[/b] [B]test[/b] but [B]test[/B] and [b]test[/B] does not work. Through some digging I found out that the following code on line 276: if ($try->get_name eq $name) { $f = $try; last; } need to be changed to: if ($try->get_name eq lc $name) { $f = $try; last; }
On So. 25. Jan. 2009, 11:44:32, harv wrote: Show quoted text
> but [B]test[/B] and [b]test[/B] does not work.
[...] thanks for the report! I'll fix this as soon as possible, hope to make a new release very soon.
fixed in 0.07