├── .github └── workflows │ └── main.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Element.php ├── ElementInterface.php ├── ElementTrait.php ├── SelfClosingElement.php ├── StringElement.php └── functions.php /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/composer.json -------------------------------------------------------------------------------- /src/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/src/Element.php -------------------------------------------------------------------------------- /src/ElementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/src/ElementInterface.php -------------------------------------------------------------------------------- /src/ElementTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/src/ElementTrait.php -------------------------------------------------------------------------------- /src/SelfClosingElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/src/SelfClosingElement.php -------------------------------------------------------------------------------- /src/StringElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/src/StringElement.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/html/HEAD/src/functions.php --------------------------------------------------------------------------------