worksome / html2text
A PHP script to convert HTML into a plain text format
Fund package maintenance!
worksome
Requires
- php: ^8.1
- ext-dom: *
- ext-libxml: *
Requires (Dev)
- pestphp/pest: ^1.22.1
- pestphp/pest-plugin-parallel: ^1.2
- worksome/coding-style: ^2.0
This package is auto-updated.
Last update: 2024-10-11 10:03:19 UTC
README
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
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.