You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When looping over strings with the {% for %} tag, the reference implementation of Liquid will iterate over a one element array, where the first and only element is the string. Python Liquid will iterate through characters in the string.
It appears that this is unintended behaviour for Ruby Liquid. Previously, Ruby Liquid would iterate over lines in a string, also not intended behaviour. See Shopify/liquid#1667.
The text was updated successfully, but these errors were encountered:
When looping over strings with the
{% for %}
tag, the reference implementation of Liquid will iterate over a one element array, where the first and only element is the string. Python Liquid will iterate through characters in the string.Template:
Ruby Liquid Output:
Python Liquid Output:
It appears that this is unintended behaviour for Ruby Liquid. Previously, Ruby Liquid would iterate over lines in a string, also not intended behaviour. See Shopify/liquid#1667.
The text was updated successfully, but these errors were encountered: