The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Pod::L10N::Html - module to convert pod files to HTML with L10N

SYNOPSIS

    use Pod::L10N::Html;
    pod2html([options]);

DESCRIPTION

Pod::L10N::Html converts files from pod format (see perlpod) to HTML format. Its API is fully compatible with Pod::Html.

If input files support Pod::L10N::Format extended format, Pod::L10N::Html do some more works to print translated text pretty well.

Also, Pod::L10N::Html has limited support for =encoding command.

FUNCTIONS

pod2html

    pod2html("pod2html",
             "--podpath=lib:ext:pod:vms",
             "--podroot=/usr/src/perl",
             "--htmlroot=/perl/nmanual",
             "--libpods=perlfunc:perlguts:perlvar:perlrun:perlop",
             "--recurse",
             "--infile=foo.pod",
             "--outfile=/perl/nmanual/foo.html");

See Pod::Html for details.

htmlify

    htmlify($heading);

See Pod::Html for details.

anchorify

    anchorify(@heading);

See Pod::Html for details.

ENVIRONMENT

Uses $Config{pod2html} to setup default options.

BUGS

=item text alternation does not work.
=encoding support has some limitations.

AUTHOR

Pod::L10N::Html is based on Pod::Html Version 1.08 written by Tom Christiansen, <tchrist@perl.com>.

Modification to Pod::L10N::Html is written by SHIRAKATA Kentaro, <argrath@cpan.org>.

SEE ALSO

perlpod, Pod::Html, Pod::L10N::Format

COPYRIGHT

This program is distributed under the Artistic License.