HOME


Mini Shell 1.0
DIR:/proc/self/root/proc/self/root/usr/local/cwpsrv/var/services/twig/doc/filters/
Upload File :
Current File : //proc/self/root/proc/self/root/usr/local/cwpsrv/var/services/twig/doc/filters/nl2br.rst
``nl2br``
=========

The ``nl2br`` filter inserts HTML line breaks before all newlines in a string:

.. code-block:: jinja

    {{ "I like Twig.\nYou will like it too."|nl2br }}
    {# outputs

        I like Twig.<br />
        You will like it too.

    #}

.. note::

    The ``nl2br`` filter pre-escapes the input before applying the
    transformation.