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
Owner: |
Nobody in particular
|
Requestors: |
harv [...] ruin.nu
|
Cc: |
|
AdminCc: |
|
|
Severity: |
Normal |
Broken in: |
0.06 |
Fixed in: |
0.07 |
|
Sun Jan 25 11:44:32 2009
harv [...] ruin.nu - Ticket created
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;
}
Wed Feb 18 05:43:02 2009
TINITA [...] cpan.org - Correspondence added
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.
Wed Feb 18 05:43:03 2009
The RT System itself - Status changed from 'new' to 'open'
Thu Feb 19 07:03:50 2009
TINITA [...] cpan.org - Correspondence added
Fri Feb 20 05:32:03 2009
TINITA [...] cpan.org - Status changed from 'open' to 'resolved'