worksome/html2text

A PHP script to convert HTML into a plain text format

Fund package maintenance!
worksome

Installs: 150 075

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 168

v2.0.1 2022-11-15 13:43 UTC

This package is auto-updated.

Last update: 2024-04-11 08:48:31 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A simple converter from HTML to Plaintext

Installation

You can install the package via composer:

composer require worksome/html2text

Usage

$text = \Worksome\Html2Text\Html2Text::convert($html);

See the original repository for more information.

Options

Option Default Description
dropLinks false Set to true to not render links as My Link instead of [https://foo.com](My Link).

Pass along a configuration class as a second argument to convert, for example:

$options = new \Worksome\Html2Text\Config(
    dropLinks: true
);

$text = \Worksome\Html2Text\Html2Text::convert($html, $options);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.