strip_newlines

문자열에서 모든 줄 바꿈 문자를 제거합니다.

입력


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

{{ string_with_newlines | strip_newlines }}

출력



Hellothere