gpt4 book ai didi

twig - 如何使用Twig缩小HTML?

转载 作者:行者123 更新时间:2023-12-03 15:04:11 25 4
gpt4 key购买 nike

我正在使用Twig,并且希望能够缩小HTML输出。我该怎么做呢?我尝试了{% spaceless %},但这需要将其添加到所有模板中。我可以在Twig引擎中添加缩小功能吗?

最佳答案

这可能对您没有什么帮助。

使用html-compress-twig可以将html,css,js压缩到一个包中。使用composer安装composer require nochso/html-compress-twig,您必须使用此代码添加带有twig的Extension。

$app->extend('twig_theme', function($twig_theme, $ojt) {
$twig_theme->addExtension(new nochso\HtmlCompressTwig\Extension());
return $ojt_theme;});


最后转到您的模板文件添加此代码。

{% htmlcompress %} ....your coding... {% endhtmlcompress %}
{{ htmlcompress('<ul> <li>') }}
{{ '<ul> <li>'|htmlcompress }}

关于twig - 如何使用Twig缩小HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18678522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com