newline_to_br

문자열의 모든 줄 바꿈(\n)을 HTML 줄 바꿈 <br /> 태그로 변환합니다.

입력


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

{{ string_with_newlines | newline_to_br }}

출력



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