├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Configuration.php ├── Nodes ├── DOM │ ├── DOMAttr.php │ ├── DOMCdataSection.php │ ├── DOMCharacterData.php │ ├── DOMComment.php │ ├── DOMDocument.php │ ├── DOMDocumentFragment.php │ ├── DOMDocumentType.php │ ├── DOMElement.php │ ├── DOMEntity.php │ ├── DOMEntityReference.php │ ├── DOMNode.php │ ├── DOMNodeList.php │ ├── DOMNotation.php │ ├── DOMProcessingInstruction.php │ └── DOMText.php ├── NodeTrait.php └── NodeUtility.php ├── ParseException.php └── Readability.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMAttr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMAttr.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMCdataSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMCdataSection.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMCharacterData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMCharacterData.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMComment.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMDocument.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMDocumentFragment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMDocumentFragment.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMDocumentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMDocumentType.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMElement.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMEntity.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMEntityReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMEntityReference.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMNode.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMNodeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMNodeList.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMNotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMNotation.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMProcessingInstruction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMProcessingInstruction.php -------------------------------------------------------------------------------- /src/Nodes/DOM/DOMText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/DOM/DOMText.php -------------------------------------------------------------------------------- /src/Nodes/NodeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/NodeTrait.php -------------------------------------------------------------------------------- /src/Nodes/NodeUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Nodes/NodeUtility.php -------------------------------------------------------------------------------- /src/ParseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/ParseException.php -------------------------------------------------------------------------------- /src/Readability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivefilters/readability.php/HEAD/src/Readability.php --------------------------------------------------------------------------------