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.