├── .deployignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── class-block-converter.php ├── class-block.php ├── concerns └── trait-listens-for-attachments.php └── helpers.php /.deployignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/.deployignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/composer.json -------------------------------------------------------------------------------- /src/class-block-converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/src/class-block-converter.php -------------------------------------------------------------------------------- /src/class-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/src/class-block.php -------------------------------------------------------------------------------- /src/concerns/trait-listens-for-attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/src/concerns/trait-listens-for-attachments.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-converter/HEAD/src/helpers.php --------------------------------------------------------------------------------