This file is indexed.

/usr/share/doc/php-twig/manual/_sources/filters/nl2br.rst.txt is in php-twig-doc 2.4.6-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
``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.