liquid icon indicating copy to clipboard operation
liquid copied to clipboard

Liquid markup language. Safe, customer facing template language for flexible web apps.

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

Instead of needing to squash instance assigns, we instead just put them at the bottom of the environment stack. This simplifies the code base and gains extra performance by not...

Liquid does not accept `{% endraw{% f %}` as a valid `endraw` tag but accepts `{% endfor{% f %}` for `endfor` tags. This is because the second capture group (i.e....

It appears that the `assign` operator doesn't like comparisons (i.e. `[thing] contains [other thing]`). For instance, I would expect this to work: ``` {%- assign is_some_product = variant.tags contains "example"...

Feature Request

Hi, i have a textarea with a list of color / hex value, example negro #000 rojo #f00 blanco #fff This value i convert to array with this: assign colors...

Would like to add the following to the Wiki "Who uses Liquid?" if possible please: Vape Superstore [https://www.vapesuperstore.co.uk]

I am a security researcher who was working on a bug bounty program recently which was leveraging Liquid 2.4.1. In the course of the research I determined that there were...

# Description I'm trying to create a liquid tag that embeds a YouTube video with a caption below it. In order to do this, I need to accept two values:...

I need number to words. for my sales invoice in Liquid template. Like, 1,00,000 = 1 Lakh.

The `base64_decode` and `base64_url_safe_decode` filters don't seem to handle Unicode characters (or any non ASCII data) well. For example. Ruby version 2.5.5 Liquid version 5.0.2 (unreleased) ```ruby require 'liquid' source...

Pardon me for being a bit late on this issue. While I understand the need for render and the benefits, I don't understand why include is being deprecated. Render is...

Question