├── .github └── workflows │ └── php.yml ├── .gitignore ├── LICENSE ├── composer.json ├── phpunit.xml ├── readme.md ├── src ├── LazyImageExtension.php └── LazyImageRenderer.php └── tests └── LazyImageExtensionTest.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | .phpunit.result.cache 4 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/readme.md -------------------------------------------------------------------------------- /src/LazyImageExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/src/LazyImageExtension.php -------------------------------------------------------------------------------- /src/LazyImageRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/src/LazyImageRenderer.php -------------------------------------------------------------------------------- /tests/LazyImageExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonvomeyser/commonmark-ext-lazy-image/HEAD/tests/LazyImageExtensionTest.php --------------------------------------------------------------------------------