newline_to_br
文字列内の各改行(\n
)の前に HTML 改行(<br />
)を挿入します。
入力
{% capture string_with_newlines %}
Hello
there
{% endcapture %}
{{ string_with_newlines | newline_to_br }}
出力
<br />
Hello<br />
there<br />
文字列内の各改行(\n
)の前に HTML 改行(<br />
)を挿入します。
入力
{% capture string_with_newlines %}
Hello
there
{% endcapture %}
{{ string_with_newlines | newline_to_br }}
出力
<br />
Hello<br />
there<br />