如何在 octobercms 中限制内容块

How to limit content block in octobercms

我有一个内容块 {% content 'filename.htm' %} 显示在网站的不同页面上,但是在某些部分我只想显示内容块的有限部分。

如何限制内容块?有没有办法使用 str_words()html_limit() {% content 'filename.htm' %}

将内容块的结果分配给一个变量,然后使用适当的过滤器/函数。

{% set content %}
    {% content 'filename.htm' %}
{% endset %}

{{ html_limit(content, 100) }}

另见 https://octobercms.com/docs/markup/function-html