Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
extras/ | H | 03-May-2022 | - | 516 | 286 | |
library/ | H | 03-May-2022 | - | 30,590 | 17,175 | |
maintenance/ | H | 03-May-2022 | - | 5,155 | 2,857 | |
plugins/phorum/ | H | 03-May-2022 | - | 892 | 615 | |
CREDITS | H A D | 10-Mar-2021 | 341 | 10 | 6 | |
INSTALL | H A D | 10-Mar-2021 | 12.4 KiB | 342 | 232 | |
INSTALL.fr.utf8 | H A D | 10-Mar-2021 | 1.9 KiB | 61 | 39 | |
LICENSE | H A D | 10-Mar-2021 | 25.8 KiB | 505 | 419 | |
NEWS | H A D | 10-Mar-2021 | 64.2 KiB | 1,225 | 1,178 | |
README.md | H A D | 10-Mar-2021 | 1.2 KiB | 30 | 20 | |
TODO | H A D | 10-Mar-2021 | 6.7 KiB | 151 | 131 | |
VERSION | H A D | 10-Mar-2021 | 6 | 1 | 1 | |
WHATSNEW | H A D | 10-Mar-2021 | 91 | 3 | 2 | |
WYSIWYG | H A D | 10-Mar-2021 | 857 | 21 | 14 | |
composer.json | H A D | 10-Mar-2021 | 700 | 26 | 25 | |
package.php | H A D | 10-Mar-2021 | 1.7 KiB | 62 | 48 | |
phpdoc.ini | H A D | 10-Mar-2021 | 3.9 KiB | 103 | 81 | |
test-settings.sample.php | H A D | 10-Mar-2021 | 2.6 KiB | 75 | 15 | |
test-settings.travis.php | H A D | 10-Mar-2021 | 2.5 KiB | 73 | 15 | |
update-for-release | H A D | 10-Mar-2021 | 2.6 KiB | 111 | 97 |
README.md
1HTML Purifier [![Build Status](https://secure.travis-ci.org/ezyang/htmlpurifier.svg?branch=master)](http://travis-ci.org/ezyang/htmlpurifier) 2============= 3 4HTML Purifier is an HTML filtering solution that uses a unique combination 5of robust whitelists and aggressive parsing to ensure that not only are 6XSS attacks thwarted, but the resulting HTML is standards compliant. 7 8HTML Purifier is oriented towards richly formatted documents from 9untrusted sources that require CSS and a full tag-set. This library can 10be configured to accept a more restrictive set of tags, but it won't be 11as efficient as more bare-bones parsers. It will, however, do the job 12right, which may be more important. 13 14Places to go: 15 16* See INSTALL for a quick installation guide 17* See docs/ for developer-oriented documentation, code examples and 18 an in-depth installation guide. 19* See WYSIWYG for information on editors like TinyMCE and FCKeditor 20 21HTML Purifier can be found on the web at: [http://htmlpurifier.org/](http://htmlpurifier.org/) 22 23## Installation 24 25Package available on [Composer](https://packagist.org/packages/ezyang/htmlpurifier). 26 27If you're using Composer to manage dependencies, you can use 28 29 $ composer require ezyang/htmlpurifier 30