in reply to pod2html --recurse

--recurse resolves pod links

so when you're converting one --infile into one --outfile, pod2html will use the directories from --recurse to resolve links found in --infile, otherwise it won't create html links, so if you're reading the file in a browser, there is nothing to click

since normally pod2html, if its called at all, its during make phase of module installation, to generate static html files

but if you're running a laptop and you have multiple versions of perl, this quickly eats your disk space , and scanning entire @INC every time you upgrade module starts slowing down module installs ,

so you quickly learn to disable html generation and manpage generation and switch to something like

plackup -l localhost:80 -e require(Pod::POM::Web::PSGI)

It has been years since I've relied on static pod..html files

Actually I'm mostly relying on metacpan these days for answering question around here

See also pod2html/Pod::Html/Pod::Find, podtree2html/pods2html/perl2html, pod2cpanhtml

Replies are listed 'Best First'.
Re^2: pod2html --recurse (resolves links)
by KeighleHawk (Scribe) on Jul 08, 2016 at 23:27 UTC

    Thank-you. The fact I mostly found pod2html as part of make files now makes (pun intended) far more sense.

    I was already starting to look at the list of alternatives you provided but many of them were not in my base install. So I wanted to do a little research before cluttering up my system. Besides, not knowing the answer was really getting on my nerves! :-)

    Thanks again!