Sébastien Ros
Sébastien Ros
Awesome. In my current implementation I am only doing it for identifiers, so this is something else to fix. More features than whatever people are using or aware of even...
Related, there is a `forloop.name` property that should contain the token used by the loop. https://github.com/harttle/liquidjs/commit/6dc7fada72467418806c1ee4bd7eaf3003690fe6 https://github.com/jg-rp/liquid/commit/e4e902429e40b85a0b6401d1637f8c09d615c253
We could have a strict mode option that would throw an exception in this case.
Should be done soon yes. I recently discovered these settings in Shopify and I think they are great. https://github.com/Shopify/liquid#undefined-variables-and-filters
https://github.com/Shopify/liquid/issues/1493
> that don't have to be recompiled each time I think you also imply "at build time". Fluid is not recompiled on every change, it is interpreted, while the application...
There is no specific integration to provide or document. You can run C# code in a view, and all the currently provided samples will work the same way: ``` @{...
In which context do you use this? I am trying to find the behavior in Shopify, but can't repro so far. I know I can trigger it in Fluid with...
Also about `ToStringValue()` returning empty, this might be a bug actually. When using `{{ _my_array | append: 'foo' }}` it returns the same thing as `{{ my_array }}foo` so probably...
If it's just the discrepancy, we might just want to fix the array one. Locally it doesn't break any tests which means there might have been no reason to return...