class Liquid::Filters::StripNewLines
- Liquid::Filters::StripNewLines
- Reference
- Object
Overview
strip_newlines
Removes any newline characters (line breaks) from a string.
Input {% capture string_with_newlines %} Hello there {% endcapture %}
{{ string_with_newlines | strip_newlines }}
Output Hellothere