Skip to content

Instantly share code, notes, and snippets.

@degt
Created October 13, 2017 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save degt/98cd9f72826ac5a51cc3cf9ba2d3e425 to your computer and use it in GitHub Desktop.
Save degt/98cd9f72826ac5a51cc3cf9ba2d3e425 to your computer and use it in GitHub Desktop.
Arrays in Liquid
{% assign words = "Hi, how are you today?" | split: ' ' %}
{% for word in words %}
{{ word }} <br>
{% endfor %}
@degt
Copy link
Author

degt commented Oct 13, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment