in reply to Unexpected HTML from POD
Searching through the docs, here is the closest thing I see, from perlpodspec (emphasis mine):BackupTRM As Boolean
At time of writing, L<name> values are of two types: either the name of a Pod page like L<Foo::Bar> (which might be a real Perl module or program in an @INC / PATH directory, or a .pod file in those places); or the name of a Unix man page, like L<crontab(5)> . In theory, L<chmod> in ambiguous between a Pod page called "chmod", or the Unix man page "chmod" (in whatever man-section). However, the presence of a string in parens, as in "crontab(5)", is sufficient to signal that what is being discussed is not a Pod page, and so is presumably a Unix man page. The distinction is of no importance to many Pod processors, but some processors that render to hypertext formats may need to distinguish them in order to know how to render a given L<foo> code.Looking through the source code of Pod::Html, I see this comment:
# has parenthesis so should have been a C<> ref ## try for a pagename (perlXXX(1))?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unexpected HTML from POD
by davies (Monsignor) on Jan 11, 2011 at 16:07 UTC | |
by LanX (Saint) on Jan 12, 2011 at 23:26 UTC | |
by davies (Monsignor) on Jan 13, 2011 at 00:18 UTC | |
by toolic (Bishop) on Jan 13, 2011 at 00:53 UTC | |
by LanX (Saint) on Jan 13, 2011 at 01:30 UTC |