yamadashy / laravel-blade-minify-directive
@minify directive to partially compress HTML.
v0.1.3
2022-10-08 13:47 UTC
Requires
- php: ^7.2 || ^8.0
- laravel/framework: ^5.7 || ^6.0 || ^7.0 || ^8.0 || ^9.0
- mrclay/minify: ^3.0
Requires (Dev)
- orchestra/testbench: ~3.7|^4.0|^5.0|^6.0|^7.0
- phpstan/phpstan: ^1.2
This package is auto-updated.
Last update: 2024-10-25 05:45:36 UTC
README
Laravel Blade Minify Directive
@minify
directive to partially compress HTML.
Motivation
There are various minify libraries available, all of which minify the entire page. However, minifying the whole page may break the design, making it difficult to implement in a large project.
If you want to apply it to a part of the page instead of the whole page, this library is useful.
Installation
You can install the package via composer:
composer require yamadashy/laravel-blade-minify-directive
Usage
Enclose the part you want to minify with @minify
and @endminify
.
<div> <!-- comment will not remove --> <div> <div>not minified</div> </div> </div> @minify <div> <!-- comment will remove --> <div> <div>minified</div> </div> </div> @endminify <div> <div>not minified</div> </div>
Converted like this.
<div> <!-- comment will not remove --> <div> <div>not minified</div> </div> </div> <div><div><div>minified</div></div></div> <div> <div>not minified</div> </div>
License
Distributed under the MIT License. See LICENSE.txt
for more information.