php-extended/php-html-transformer-style-filter

This package is abandoned and no longer maintained. The author suggests using the php-extended/php-html-transformer-object package instead.

A filter for html trees that removes style nodes and styles attributes

3.1.16 2021-06-25 09:44 UTC

README

A filter for html trees that removes style nodes and styles attributes.

coverage build status

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"php-extended/php-html-transformer-style-filter": "^3",
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Basic Usage

To filter a dom node, do the following :


use PhpExtended\HtmlTransformerStyleFilter;

/* @var $dom \PhpExtended\Html\HtmlAbstractNodeInterface */
$filter = new HtmlTransformerStyleFilter();
$filtered = $filter->transform($dom);
// $filtered instanceof \PhpExtended\Html\HtmlAbstractNodeInterface
// but without style nodes

License

MIT (See license file).