定制 yamadashy/laravel-blade-minify-directive 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yamadashy/laravel-blade-minify-directive

最新稳定版本:v1.0.0

Composer 安装命令:

composer require yamadashy/laravel-blade-minify-directive

包简介

@minify directive to partially compress HTML.

README 文档

README

Laravel Blade Minify Directive

@minify directive to partially compress HTML.

Downloads Test Status Latest Version License

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.

统计信息

  • 总下载量: 1.25k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 2
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-12-12

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固