Three bugs in pod2html
authorUnknown Contributor <hansm@euronet.nl>
Mon, 5 May 1997 22:28:06 +0000 (00:28 +0200)
committerChip Salzenberg <chip@atlantic.net>
Wed, 7 May 1997 12:00:00 +0000 (00:00 +1200)
commitbe173d55224d502f8f43b651987d3769cef41280
tree37532baf1109f6ea58fb9a6338d529d8dd29f44b
parentc0e1ccf0a4885cd7426ea5414ca3ce958817877e
Three bugs in pod2html

I had three problems with the pod2html distributed with perl 5.00399:

1. The HTML code generated begins with a series of hyperlinks to all
   sections of the file.  Pod directives occurring in the section
   titles (=head directives) were not translated.

2. C<foo()> sets translates to <CODE>foo</CODE> -- the () disappear.

3. Perlpod promises that example code gets typeset with tab stops
   every 8 columns.  HTML makes no such promise, hence pod2html must
   expand tabs.

The first three hunks of the patch below solve #1, hunk 4 fixes a
call to &process_text with the wrong number of args, hunk 5 solves #3
and hunk 6 solves #2.x

p5p-msgid: 199705052228.AAA25351@mail.euronet.nl
lib/Pod/Html.pm