Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Last active May 6, 2023 12:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihorduchenko/d1b15226279e69cde63ae003f8a42d32 to your computer and use it in GitHub Desktop.
Save ihorduchenko/d1b15226279e69cde63ae003f8a42d32 to your computer and use it in GitHub Desktop.
Split text field to multiple lines using 'newline_to_br' and 'split' filters
{%- assign text_rows = text | newline_to_br | split: '<br />' -%}
{%- for row in text_rows -%}
{{ row }}
{%- endfor -%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment