Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Markdown-Pod CPAN distribution.

Report information
The Basics
Id: 75458
Status: resolved
Priority: 0/
Queue: Markdown-Pod

People
Owner: Nobody in particular
Requestors: cpan [...] abigail.be
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: No handlers for strong
There are no handlers for strong. Adding sub start_strong { my $self = shift; $self->_stream('B<'); } sub end_strong { my $self = shift; $self->_stream('>'); } seems to fix the problem. On a related note, it maybe be better to inject a 'I<' instead of a 'B<' into the stream in start_emphasis. Thanks for the module, it saved me writing one.
On Thu Mar 01 18:26:51 2012, ABIGAIL wrote: Show quoted text
> There are no handlers for strong. Adding > > sub start_strong { > my $self = shift; > > $self->_stream('B<'); > } > > sub end_strong { > my $self = shift; > > $self->_stream('>'); > } > > seems to fix the problem. > > On a related note, it maybe be better to inject a 'I<' instead of a 'B<' > into the stream in start_emphasis. > > Thanks for the module, it saved me writing one.
Sorry for late response, and thanks for advise. I patched about strong & emphasis tag and uploaded 0.002 version. Thanks! :)
Hi Keede, You probably want to set ticket status to 'resolved' instead of 'patched', because apparently RT thinks 'patched' tickets are still open/ active. Regards, Steven
On Mon Jun 18 21:17:19 2012, SHARYANTO wrote: Show quoted text
> Hi Keede, > > You probably want to set ticket status to 'resolved' instead of > 'patched', because apparently RT thinks 'patched' tickets are still open/ > active. > > Regards, > Steven
Thanks, sharyanto. I'll change the status of ticket. Thanks for reporting. :)