newline_to_br 将换行符转为 HTML <br />标签

在字符串中的每个换行符 (\n) 位置插入一个 HTML <br /> 标签。

输入

{% capture string_with_newlines %}
Hello
there
{% endcapture -%}

{{ string_with_newlines | newline_to_br }}

输出

<br />
Hello<br />
there<br />