Symfony2/Twig - Need to use |nl2br for spaces and |raw blog body in twig, can this be done?

StackOverflow https://stackoverflow.com/questions/23260863

  •  08-07-2023
  •  | 
  •  

Pergunta

I am using nl2br filter on the blog body to put in spaces. Is it possible to also use another filter on top of this? I would like to use |raw for some html code in the blog body.

e.g., how can I add in the |raw filter on top of this?

{% for blogs in blog %}
   <p>{{ blog.blog|nl2br }}</p>
{% endfor %}
Foi útil?

Solução

You can use your filters in chain, so:

{{ blog.blog|raw|nl2br }}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top