in reply to Re^2: how to open page and follow link
in thread how to open page and follow link
You can currently produce that result by adding this to your code:
use WWW::Mechanize; BEGIN { package WWW::Mechanize::Link; use overload '""' => \&url_abs; }
OTOH it wouldn't do much good in your case, as you're trying to generate a HTML page of links. A simple, plain text, list of links then isn't much good.
|
|---|