Re: Lack of html anchor for =item * foo

2011-04-27 Thread Karl Williamson
On 04/26/2011 11:02 AM, David E. Wheeler wrote: FWIW, Pod::Simple::XHTML doesn't output an ID fordts, either. The Perl core docs have roughly 700 links to dts. For example, perlfunc uses =item's for all its functions.

Re: Lack of html anchor for =item * foo

2011-04-27 Thread David E. Wheeler
On Apr 27, 2011, at 10:59 AM, Karl Williamson wrote: FWIW, Pod::Simple::XHTML doesn't output an ID fordts, either. The Perl core docs have roughly 700 links to dts. For example, perlfunc uses =item's for all its functions. It'd be straight-forward to add it to the XHML output if someone

Lack of html anchor for =item * foo

2011-04-26 Thread Karl Williamson
I discovered that in html output of lists that have elements of the form =item * foo no a anchor is generated for foo; this is different from lists of the form =item foo The first case generates a ul list, and the second a dl list. The problem is that in the first form, any link in the file to

Re: Lack of html anchor for =item * foo

2011-04-26 Thread Karl Williamson
On 04/26/2011 11:02 AM, David E. Wheeler wrote: On Apr 26, 2011, at 9:51 AM, Karl Williamson wrote: I discovered that in html output of lists that have elements of the form =item * foo noa anchor is generated for foo; this is different from lists of the form =item foo The first case

Re: Lack of html anchor for =item * foo

2011-04-26 Thread David E. Wheeler
On Apr 26, 2011, at 10:36 AM, Karl Williamson wrote: When I do a perldoc -ohtml, what module is getting called that does generate an ID for dts ? Pod::Simple::HTML, IIRC. Use perldoc -MPod::Simple::XHTML To get the shiny new HTML output. Best, David