liquid
liquid copied to clipboard
Liquid markup language. Safe, customer facing template language for flexible web apps.
#### Problem People have templates with broken syntax that is accepted by the lax parser but really makes no sense. We can't switch entirely to the strict parser because of...
``` # array being [1,2,3] for item in array reversed limit:2 ``` currently returns [2,1]. This fix makes it more logically: [3,2].
```[tasklist] ### Tasks - [ ] https://github.com/Shopify/liquid/issues/1738 - [ ] https://github.com/Shopify/liquid/issues/1742 - [ ] https://github.com/Shopify/liquid/issues/236 - [ ] https://github.com/Shopify/liquid/issues/1741 - [ ] https://github.com/Shopify/liquid/pull/1146 - [ ] https://github.com/Shopify/liquid/issues/1589 - [ ]...
Hello! It won't let me open a PR to modify the Wiki (I don't have permission) Could you add Liquid ML to the list of ports? Here is the link...
# Issue If a user chooses a dynamic source for the color picker in the Theme Editor, such as *Brand > Primary Color 1*, any .liquid files in the assets...
I've noticed in my dev site (and other Shopify stores from a cursory Google search) that a new method of generating CDN URLs is causing issues. All images and asset...
The doc states "When iterating a hash, item[0] contains the key, and item[1] contains the value" https://github.com/Shopify/liquid/wiki/Liquid-for-Designers But i'm getting blanks. I'm testing here: https://pramodvalavala-msft.github.io/liquid-playground/ Template: ``` { {%- for...
When ActiveSupport isn't loaded, `[] == blank` is false, but when it is loaded, it (correctly?) matches the behaviour of `[] == empty`. I think it's fair to say the...