I use the nl2br filter on a blog blog to put spaces. Can I use another filter on top of this? I would like to use | raw for some html code on a blog blog.
For example, how can I add to a filter? raw on top of this?
{% for blogs in blog %}
<p>{{ blog.blog|nl2br }}</p>
{% endfor %}
source
share