1

我很困惑。

输入 :Sentence with <character

我的代码:

{{ Status.StatusStatus }}

输出:

Sentence with <character

这很好......但我需要启用“锚定html”,如“

<a href='/app_dev.php/something/' class='showProfile green bold'>something </a>

所以我将代码修改为:{{ Status.StatusStatus|raw }}修复了锚问题,现在是“转换的” - 可点击,但从那个输入我得到那个输出:

Input : Sentence with <character

Output: Sentence with

任何想法如何允许<something情况?

4

2 回答 2

0

you can write your own twig extension to whitelist some html Elements: https://stackoverflow.com/a/8026130/1847340

于 2013-11-07T08:47:21.747 回答
0

答案是您编写 TWIG 以获得所需的 HTML 标记,并在需要的地方打印变量

<a href="{{ path('route_name') }}" class="showProfile green bold">{{ Status.StatusStatus }}</a>
于 2013-11-06T20:27:44.777 回答