Created
July 7, 2019 15:57
-
-
Save taufik-nurrohman/8c8180ce9c2efa3fb6890396ca09a475 to your computer and use it in GitHub Desktop.
Generate text “foo, bar, baz and qux” from array input in Liquid by https://github.com/mecha-cms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign total_items = items.size %} | |
{% for item in items %} | |
{% if forloop.index > 1 %} | |
{% if forloop.index != total_items %}, {% else %} and {% endif %} | |
{% endif %} | |
{{ item }} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment