* Steve Peters <[EMAIL PROTECTED]>, 2006-07-15, 09:27:
$ cat buggy
__END__

=head1 FOO

I<< x >>

B<< x >>

F<< x >>

S<< x >>

=cut

$ pod2html buggy | grep '&gt;'
<p><em>x </em>&gt;</p>
<p><strong>x </strong>&gt;</p>
<p><em>x </em>&gt;</p>
<p>x&nbsp;&gt;</p>


It appears to be behaving as expected. The only problem is the missing E<lt> and E<gt>.

[EMAIL PROTECTED]:~$ cat not_buggy
__END__

=head1 FOO

I<E<lt> x E<gt>>

B<E<lt> x E<gt>>

F<E<lt> x E<gt>>

S<E<lt> x E<gt>>

=cut


Uhm, but I don't want to get 'x' enclosed with angle brackets -- just 'x' alone. pod2text does it well:

$ pod2text buggy
FOO
   *x*

   x

   x

   x



--
Jakub Wilk


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to