我想使用特殊符号,但我只是打印问号符号�
我试过
{% autoescape 'html' %}
{{ '©'|escape('html') }} {# won't be double-escaped #}
{{ '©'|escape(strategy) }} {# will be double-escaped #}
{% endautoescape %}
它不起作用。
答案 0 :(得分:3)
使用原始过滤器:
{{ '©'|raw }}
http://twig.sensiolabs.org/doc/filters/raw.html
如果输出应该是HTML,您还可以使用HTML实体表示法,例如商标符号:
{{ '™' }}
或电子邮件签名:
{{ '@' }}
答案 1 :(得分:0)
由于您要显示静态字符串而不是变量,您可以直接编写字符,不需要使用{{ }}
标记:
©
或者使用Miro引用的HTML实体:
™