class Liquid::Filters::NewLineToBr
- Liquid::Filters::NewLineToBr
- Reference
- Object
Overview
newline_to_br
Replaces every newline (\n) with an HTML line break (
).
Input {% capture string_with_newlines %} Hello there {% endcapture %}
{{ string_with_newlines | newline_to_br }}
Output
Hello
there