liquid-rust
liquid-rust copied to clipboard
Liquid templating for Rust
> difference is unmaintained | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `difference` | | Version | `2.0.0` | | URL...
Coming from https://github.com/cobalt-org/cobalt.rs/pull/866, I think I might have hit a case where there is a need for more lax support. That or cobalt's template parsing needs to be specially-handled for...
Just a few general questions on liquid-rust. 1. would you say this implementation provides the same level of safety as the ruby version? i.e. since an end user can create...
Part of #311
This benchmark should have seen major improvements with #432. I suspect we are hitting a corner case where we are doing extra copies.
``` static SIMPLE_TEMPLATE_LIQUID: &str = " {{ product.name }} {{ product.name }} - {{ product.manufacturer | upcase }} {{ product.summary }} £{{ product.price * 1.20 }} (VAT inc.) Look at...
liquid-rust version: 0.21.4 rust version: 1.49.0 OS: Any I want to add a custom filter called `url_param_escape`, which is exactly the same function of a standard filter `url_encode` in the...
- [ ] absolute_url - [ ] markdownify, see https://github.com/cobalt-org/cobalt.rs/issues/342 - [ ] sassify - [x] slugify - [ ] jsonify - [ ] inspect - [x] where - [...
With #418, we found that our compliance has fallen behind. Probably the easiest way is to just compare tests.
Seems like a pretty neat concept might be nice as an "extras" block / tag (non-stdlib feature) ``` {% define name arg1 arg2 %} {% endmacro %} {% macro name...