The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

html2text - Render HTML as text using one of multiple backends

VERSION

This document describes version 0.001 of html2text (from Perl distribution App-html2text), released on 2019-01-14.

SYNOPSIS

Usage:

 % html2text [options] <html>

DESCRIPTION

Backends are tried in the following order (order is chosen based on rendering quality):

OPTIONS

* marks required options.

Input options

--html=s*

Logging options

--debug

Shortcut for --log-level=debug.

--log-level=s

Set log level.

--quiet

Shortcut for --log-level=error.

--trace

Shortcut for --log-level=trace.

--verbose

Shortcut for --log-level=info.

Other options

--help, -h, -?

Display help message and exit.

--version, -v

Display program's version and exit.

COMPLETION

This script has shell tab completion capability with support for several shells.

bash

To activate bash completion for this script, put:

 complete -C html2text html2text

in your bash startup (e.g. ~/.bashrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.

It is recommended, however, that you install modules using cpanm-shcompgen which can activate shell completion for scripts immediately.

tcsh

To activate tcsh completion for this script, put:

 complete html2text 'p/*/`html2text`/'

in your tcsh startup (e.g. ~/.tcshrc). Your next shell session will then recognize tab completion for the command. Or, you can also directly execute the line above in your shell to activate immediately.

It is also recommended to install shcompgen (see above).

other shells

For fish and zsh, install shcompgen as described above.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/App-html2text.

SOURCE

Source repository is at https://github.com/perlancar/perl-App-html2text.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-html2text

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

html2text. CLI for this module.

html2txt. a simpler HTML rendering utility which basically just strips HTML tags from HTML source code.

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.