in reply to pod2html: link (L<...>) formatting code
(No possibility to test right now)
G'day Rolf,
Thanks for the suggestion. I did try those; unfortunately, to no avail.
I also noted that pod2html was a wrapper around Pod::Html, whose ENVIRONMENT section has "Uses $Config{pod2html} to setup default options.". I checked the source (https://metacpan.org/dist/perl/source/ext/Pod-Html/lib/Pod/Html.pm) but that doesn't provide any additional options to the published ones. At line 522:
sub parse_command_line { my ($opt_backlink,...,$opt_verbose); unshift @ARGV, split ' ', $Config{pod2html} if $Config{pod2html}; my $result = GetOptions( 'backlink!' => \$opt_backlink, ..., 'verbose!' => \$opt_verbose, ); usage("-", "invalid parameters") if not $result; ... } [download]
— Ken