Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在液体模板中有以下代码:
<a href="{{ sample.url }}">{{ sample.url }}</a>
来自 jinja2 我希望得到这样的结果:
{{ sample.url|urlize }}
这是否存在于液体中?
我已经看过液体文档,但找不到任何参考,但正如文档所说,您可以编写自己的过滤器来做到这一点。
看看这里。