http://www.perlmonks.org?node_id=967610


in reply to Re^2: perl pod link to anoter document
in thread perl pod link to anoter document

i tried this and it did not work.

You tried what?

ro.pod

=head1 LINKS TO SHAM BO C<<< file:sham.html >>> L<file:sham.html> C<<< file:./sham.html >>> L<file:./sham.html> BOGUS LINKS, ABSOLUTE NOT RELATIVE ACCORDING TO FIREFOX C<<< file://sham.html >>> L<file://sham.html> C<<< file://./sham.html >>> L<file://./sham.html> =cut

This fails (I expected this, many bugs in pod2html)  pod2html ro.pod > ro.html

This works  perl -MPod::Simple::HTML -e Pod::Simple::HTML::go ro.pod  ro.html

This works pom2 html ro.pod > ro.html

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

Replies are listed 'Best First'.
Re^4: perl pod link to anoter document
by vlad_tepesch (Acolyte) on Apr 27, 2012 at 13:48 UTC
    This works perl -MPod::Simple::HTML -e Pod::Simple::HTML::go ro.pod ro.html
    thanks, this seems to fit best for me. it is part of core modules and gives correct output similar to pod2html.

    Thanks again