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


I am using nl2br filter on blog body to put in space. Is it possible to use another filter at the top of this?

For example, I am at the top of this. How do I add raw filters? %} For% blog%} & lt; P & gt; {{Blog.blog | nl2br}} & lt; / P & gt; {% Endfor%}

You can use your filter in series, therefore :

  {{blog.blog | Raw | nl2br}}    

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -