nl2br

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

nl2br フィルターは、文字列内のすべての改行の前に HTML 改行を挿入します。
1
2
3
4
5
6
7
{{ "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.

nl2br フィルタは、変換を適用する前に入力を事前にエスケープします。