twig 输出中的 \t 字符
有人知道如何使 twig 停止输出 \t 和 \n 字符吗? 我的输出如下所示:
<ul>\n \t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<a href=''> ...
对于此模板:
<ul>
{% for datum in this.data %}
<li><a href='#'>link</a></li>
{% endfor %}
</ul>
谢谢!
anyone knows how to make twig stop outputting \t and \n characters?
my output looks like this:
<ul>\n \t\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t<a href=''> ...
for this template:
<ul>
{% for datum in this.data %}
<li><a href='#'>link</a></li>
{% endfor %}
</ul>
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没错,正如Twig 空格手册中所述:
您可以使用
spaceless
标签来抑制空格。请参阅手册以了解更多选项。
That's right, as it says in the Twig manual for whitespaces:
You can use the
spaceless
-tag to suppress whitespaces.Have a look at the manual for further options.