hamza221/html2text

Converts HTML to formatted plain text

Installs: 12 174

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 222

v1.0.0 2023-08-16 11:30 UTC

This package is auto-updated.

Last update: 2024-04-16 13:27:46 UTC


README

A PHP library for converting HTML to formatted plain text.

Build Status

Installing

composer require hamza221/html2text

Basic Usage

$html = new \Html2Text\Html2Text('Hello, &quot;<b>world</b>&quot;');

echo $html->getText();  // Hello, "WORLD"

History

This library started life on the blog of Jon Abernathy http://www.chuggnutt.com/html2text

A number of projects picked up the library and started using it - among those was RoundCube mail. They made a number of updates to it over time to suit their webmail client.

Now it has been extracted as a standalone library. Hopefully it can be of use to others.