-
-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Joining values fail with the latest version #212
Comments
You missed value-{{ value | split: " " | join \', value-\'}} Sadly it's a regression but since the feature (I mean allowing omit the comma) is not intended and undocumented it's not marked as BREAKING CHANGES. Also see #208. |
Thank you @harttle. Would it be possible to throw on invalid syntax? Or at least to have a flag for it? It's a bit problematic form usability perspective if it just fails silently. |
You're right. An error will be thrown in 9.11.8 and I listed it as a difference with shopify/liquid here. |
@harttle great to hear! And really good job on maintaining the library, very much appreciated! |
Hi!
Thanks for the great work with the library!
There seems to be a bug with joining values in the latest version.
Following code:
should produce output
value-123, value-321, value-123
, but instead it producesvalue-123 321 123
working version: 9.6.0
failing version: 9.11.7
The text was updated successfully, but these errors were encountered: