A simple converter from HTML to Plaintext
You can install the package via composer:
composer require worksome/html2text
$text = \Worksome\Html2Text\Html2Text::convert($html);
See the original repository for more information.
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);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.