├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── example └── index.php ├── phpunit.xml ├── src ├── Config.php ├── Document.php ├── Facades │ └── NeatyHTML.php ├── NeatyDOMException.php ├── NeatyHTML.php ├── NeatyHTMLServiceProvider.php ├── Overrides.php ├── Tidy.php ├── XPath.php └── configs │ ├── attr.php │ ├── tagOverrides.php │ └── tags.php └── tests └── NeatyHTMLTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/composer.lock -------------------------------------------------------------------------------- /example/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/example/index.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/Document.php -------------------------------------------------------------------------------- /src/Facades/NeatyHTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/Facades/NeatyHTML.php -------------------------------------------------------------------------------- /src/NeatyDOMException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/NeatyDOMException.php -------------------------------------------------------------------------------- /src/NeatyHTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/NeatyHTML.php -------------------------------------------------------------------------------- /src/NeatyHTMLServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/NeatyHTMLServiceProvider.php -------------------------------------------------------------------------------- /src/Overrides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/Overrides.php -------------------------------------------------------------------------------- /src/Tidy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/Tidy.php -------------------------------------------------------------------------------- /src/XPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/XPath.php -------------------------------------------------------------------------------- /src/configs/attr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/configs/attr.php -------------------------------------------------------------------------------- /src/configs/tagOverrides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/configs/tagOverrides.php -------------------------------------------------------------------------------- /src/configs/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/src/configs/tags.php -------------------------------------------------------------------------------- /tests/NeatyHTMLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab1521/NeatyHTML/HEAD/tests/NeatyHTMLTest.php --------------------------------------------------------------------------------