liquid icon indicating copy to clipboard operation
liquid copied to clipboard

Liquid Template Engine for Go

Results 2 liquid issues
Sort by recently updated
recently updated
newest added

Is there any way to create custom tags and filters like `{{ customtag }}`, `{{ endcustomtag }}` ?

Implemented additional tags based on Shopify's Liquid documentation. Refer to: https://docs.shopify.com/themes/liquid-documentation/tags/ New tags: - `cycle` https://docs.shopify.com/themes/liquid-documentation/tags/iteration-tags#cycle - `tablerow` https://docs.shopify.com/themes/liquid-documentation/tags/iteration-tags#tablerow - `increment` https://docs.shopify.com/themes/liquid-documentation/tags/variable-tags#increment - `decrement` https://docs.shopify.com/themes/liquid-documentation/tags/variable-tags#decrement Enhancements for tags: - Added...