On Sun, Jul 16, 2006 at 03:01:28PM +0200, Jakub Wilk wrote: > * 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 '>' > >><p><em>x </em>></p> > >><p><strong>x </strong>></p> > >><p><em>x </em>></p> > >><p>x ></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:
Um, then don't use double angle brackets. [EMAIL PROTECTED]:~$ cat not_buggy __END__ =head1 FOO I< x > B< x > F< x > S< x > =cut pod2html output... <h1><a name="foo">FOO</a></h1> <p><em> x </em></p> <p><strong> x </strong></p> <p><em> x </em></p> <p> x </p> Steve Peters [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]