Twig:如何为Facebook Open Graph转义html标签?

时间:2014-05-29 13:09:06

标签: twig

我想在我的描述Open Graph标签中转义html标签。我试过这个:

<meta property="og:description" content="{{ article.text|e('html_attr') }}" />
<meta property="og:description" content="{{ article.text|raw }}" />

但我还是得到了标签:

enter image description here

我在<head>内打开了图表。

1 个答案:

答案 0 :(得分:1)

Twig附带striptags过滤器(Twig documentation)。

试试这个:

<meta property="og:description" content="{{ article.text|striptags }}" />