Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

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

Report information
The Basics
Id: 49615
Status: resolved
Priority: 0/
Queue: Pod-Simple

People
Owner: Nobody in particular
Requestors: COWENS [...] cpan.org
Cc: chas.owens [...] gmail.com
AdminCc:

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



CC: chas.owens [...] gmail.com
Subject: E<sol> and E<verbar> become &sol; and &verbar; instead of / and | (or &#47; and &#124;)
E<sol> and E<verbar> are not correctly handled by Pod::Simple::XHTML: #!/usr/bin/perl use warnings; use strict; use Pod::Simple::XHTML; my $parser = Pod::Simple::XHTML->new(output_fh => 1); $parser->no_whining(1); $parser->no_errata_section(1); $parser->output_string(\my $str); $parser->parse_string_document(join "", <DATA>); print $str; __DATA__ =head2 foo L<X E<sol>E<sol> Y> L<X E<verbar>E<verbar> Y>
I've added decoding handling for E<sol> and E<verbar> to Pod::Simple::XHTML, it will appear in 3.09. Thanks, Allison