Files
liquid/filters/strip_newlines.md
2016-04-02 18:46:32 -04:00

425 B

title
title
strip_newlines

Removes any newline characters (line breaks) from a string.

Input

```liquid {% raw %} {% capture string_with_newlines %} Hello there {% endcapture %}

{{ string_with_newlines | strip_newlines }} {% endraw %}


<p class="code-label">Output</p>
```html
{% capture string_with_newlines %}
Hello
there
{% endcapture %}

{{ string_with_newlines | strip_newlines }}