liquid
liquid copied to clipboard
Liquid markup language. Safe, customer facing template language for flexible web apps.
Hey there! Hopefully you're still taking updates to the wiki (although it looks like the last update was 2020). Under https://github.com/Shopify/liquid/wiki -> "Who uses Liquid?", there is an entry for...
``` {% for blog in blogs %} {{ blog.title }} {% endfor %} ``` This code seems to be not working in a custom section file. The output is empty...
Hi, I'm trying to render a Shopify theme using this lib after running a demo, this error message has shown : Liquid syntax error: Unknown tag 'section' , it's refer...
Ideally, we would have tests for the liquid language that could be shared for re-use across liquid implementations. This would better support re-implementations of liquid for performance reasons (e.g. liquid-c)...
I'm not sure where to post this so I'm posting it here. I'd like to allow for default language to be used or default filter fallback. Is there any way...
In a low-level implementation of liquid, I would like to treat conversion of filter arguments to `slice`, `truncate` and `truncatewords` with a saturating conversion to an i32 or u32. Having...
I hope I can just use "//" to comment out a line or to add some comment to a line, but it seems to me {% comment %}{% endcomment %}...
I updated this test to reflect a more accurate version of lyrics used to demonstrate the ability to embed multiple variables within a liquid template. The origin of these lyrics...
A product without an image using the img_url filter: `{{ product | img_url }}` Outputs a valid image URL: `//cdn.shopify.com/shopifycloud/shopify/assets/no-image-100-c91dd4bdb56513f2cbf4fc15436ca35e9d4ecd014546c8d421b1aece861dfecf_small.gif` A product without an image using the image_url filter: `{{...
I am attempting to design a Shopify order template and need the orders to print in order (numerically) by product number. Unfortunately it ends up in this order: 01 07...