Ed Page
Ed Page
> Not sure if it is related to #300 but I know the liquid ruby also has an option where it will render the template and ignore any errors it...
@chipsenkbeil please create separate issues for each of your requests.
@Goncalerta > This is part of a broader problem because not only would it be good to show line numbers on FilterChain, it would be also nice to have them...
To be clear, line numbers during render is more of https://github.com/cobalt-org/liquid-rust/issues/247 so I split this conversation off here so we can capture our thoughts. #303 is more focused on the...
> This solves issues #335. It also solves some of issue #246, but the filter doesn't yet work on a single hash.
If the liquid syntax allows this, I think it'd be nice to read `now` and `today` from the `Context` and fallback to using the current time if they aren't there...
For https://github.com/cobalt-org/cobalt.rs/issues/349, I looked up how shopify's `date` does its parsing: `date` calls `Utils.to_date` (referenced above by johannhof) - [`Utils.to_date`](https://github.com/Shopify/liquid/blob/master/lib/liquid/utils.rb#L63) - If already a date time, no need to parse...
As long as they are formats supported by the Ruby implementation, go for it. We don't have to tackle this all at once.
Let's start with defaulting to +0000 instead of local time. Maybe I'm confusing this with cobalt but I think we already default to +0000 in other parts. There are also...
My thought for how to handle this is to allow "partial parsing". The tag/block parsing trait gets passed a `&str` and returns the `&str` from where it left off. It...