nochso/html-compress-twig
最新稳定版本:2.0.1
Composer 安装命令:
composer require nochso/html-compress-twig
包简介
Twig extension for compressing HTML and inline CSS/Javascript
README 文档
README
A Twig extension for WyriHaximus/HtmlCompress.
Currently supported Twig features are:
- Tag
{% htmlcompress %} ... {% endhtmlcompress %}
- Function
{{ htmlcompress('some html') }}
- Filter
{{ content|markdown|htmlcompress }}
Any HTML, inline CSS and Javascript will be compressed.
Installation
-
Install and use composer in your project.
-
Require this package via composer:
composer require nochso/html-compress-twig
Usage
First register the extension with Twig:
$twig = new Twig_Environment($loader); $twig->addExtension(new \nochso\HtmlCompressTwig\Extension());
Then use it in your templates:
{% htmlcompress %}{% endhtmlcompress %}
{{ htmlcompress('<ul> <li>') }}
{{ '<ul> <li>'|htmlcompress }}
Compression is disabled by Twig's debug setting. This is to make development easier, however you can always
override it.
The constructor of this extension takes a boolean parameter $forceCompression. When true, this will force compression
regardless of Twig's debug setting. It defaults to false when omitted.
// Enable compression regardless of Twig's debug setting $twig->addExtension(new \nochso\HtmlCompressTwig\Extension(true));
History
See CHANGELOG for the full history of changes.
License
This project is licensed under the ISC license which is MIT/GPL compatible and FSF/OSI approved. See the LICENSE file for the full license text.
统计信息
- 总下载量: 465.28k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 84
- 点击次数: 1
- 依赖项目数: 8
- 推荐数: 0
其他信息
- 授权协议: ISC
- 更新时间: 2015-10-05