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
Post a Comment