strip_newlines

文字列から改行文字(行の終わり)を削除します。

入力

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

{{ string_with_newlines | strip_newlines }}

出力



Hellothere