Looking to hire Laravel developers? Try LaraJobs

laravel-html-purifier maintained by kaishiyoku

Description
A HTML filter using htmlpurifier with additional HTML5 rules.
Last update
2020/09/14 20:58 (dev-master)
License
Links
Downloads
5 154

Comments
comments powered by Disqus

Maintenance Packagist Packagist

A HTML filter using htmlpurifier with additional HTML5 rules.

Table of contents

General

This package helps purifying HTML markup from unwanted one, like script tags or similar.

It uses the https://github.com/ezyang/htmlpurifier package with some added HTML5 rules.

Installation

Composer

Add "kaishiyoku/laravel-html-purifier": "1.*" to your composer.json by running composer require kaishiyoku/laravel-html-purifier.

Update your dependencies by running composer update.

Usage

$dirtyHtml = '<a href="#">Dirty HTML<script type="text/javascript">alert('purified?');</script></a>';

$purifier = new HtmlPurifier();

$purifiedHtml = $purifier->purify($dirtyHtml);

Output:

<a href="#">Dirty HTML</a>

If you have any issues feel free to open a ticket.

License

MIT (https://github.com/Kaishiyoku/laravel-menu/blob/master/LICENSE)

Author

Twitter: @kaishiyoku
Website: www.andreas-wiedel.de