masroore / html2text
A PHP package to convert HTML into a plain text format
Installs: 3 108
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.0 || ^8.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- nunomaduro/collision: ^6.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-10-13 07:09:47 UTC
README
Overview
masroore/html2text is a PHP package that converts a page of HTML into clean, easy-to-read plain ASCII text.
Installation
Requires PHP 8.0+
You can install the package via composer:
composer require masroore/html2text
Usage
Extract text from HTML:
use Kaiju\Html2Text\Html2Text; $converter = new Html2Text(); echo $converter->convert($html);
Callback functions
You are able to change process of formatting by providing callbacks in pre-processing, tag-replacing and post-processing:
# assign a pre-processing callback function. (transform href links) $converter->setPreProcessingCallback(fn (string $s) => preg_replace('%<\s*a[^>]*href=[\'"](.*?)[\'"][^>]*>([\s\S]*?)<\/\s*a\s*>%i', '$2 ($1)', $s)); # assign a tag-replacement callback function. (replace <li> tags) $converter->setTagReplacementCallback(fn (string $s) => preg_replace('/<\s*li[^>]*>/i', "\n- ", $s)); # post-processing hook $converter->setPostProcessingCallback(...); # process HTML echo $converter->convert($html);
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Thank you for considering to contribute to Html2Text. All the contribution guidelines are mentioned here.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
Html2Text is an open-sourced software licensed under the MIT license.