in reply to pod2html: link (L<...>) formatting code

Did you try --podroot and/or --htmlroot see pod2html

(No possibility to test right now)

  • Comment on Re: pod2html: link (L<...>) formatting code

Replies are listed 'Best First'.
Re^2: pod2html: link (L<...>) formatting code
by kcott (Archbishop) on Dec 14, 2021 at 11:27 UTC

    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; ... }

    — Ken