Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrated from rt.perl.org#1515 (status was 'resolved')
Searchable as RT1515$
The text was updated successfully, but these errors were encountered:
The problem is with "pod2html" formatting of "=item text" entries. From what I see, this text:
=over 4
=item hi there
The definition of "hi there" is xyzzy.
=back
will be formatted as (minus a few extra CRs):
<DL> <DT><STRONG><A NAME="item_hi">hi there</A></STRONG> <DD><P>The definition of "hi there" is xyzzy. </DL>
This should, from my reading of HTML, instead be formatted as:
<DL> <DT><STRONG><A NAME="item_hi">hi there</A></STRONG></DT> <DD>The definition of "hi there" is xyzzy.</DD> </DL>
In other words, there is an extra paragraph break and the DT and DD are not closed properly. This does make a difference in the output!
-- David Masterson * KLA-Tencor Corp. * Yield Management Systems * 408-875-6836 * David.Masterson@kla-tencor.com
Sorry, something went wrong.
Appears fixed in 5.8.1 RC2's pod2html, probably fixed eariler.
@schwern - Status changed from 'stalled' to 'resolved'
No branches or pull requests
Migrated from rt.perl.org#1515 (status was 'resolved')
Searchable as RT1515$
The text was updated successfully, but these errors were encountered: