PHP Classes

File: libs/Twig/doc/filters/nl2br.rst

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Twig/doc/filters/nl2br.rst   Download  
File: libs/Twig/doc/filters/nl2br.rst
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 425 bytes
 

Contents

Class file image Download
``nl2br`` ========= .. versionadded:: 1.5 The nl2br filter was added in Twig 1.5. 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.