Vincent Prouillet
Vincent Prouillet
What's the format of what you're serializing? You can see it by doing `{{ __tera_context }}` in your template. In theory it should work with indexing access, like `my_map[product][customer]`
It looks like the keys are concatenated when serialising so you need to concatenate in the templates as well. Is that all you have in your context? You're trying to...
> currently Tera does not support maps in the context, correct? It does. If you can pass it to the context then you can access it from the templates. Tera...
Not in the current version no
Tera already kind of supports that since you can add custom filters/tests/global functions. You cannot extend the parser though. > I was exploring the viability of building a python library...
Maybe in a v2 but not in the current parser. Filter sections kinda cover that kind of usecases imo.
That would be a breaking change I believe so it's not going to happen for v1
The idea is good but I think you need to remove some of the changes from your PR, there are no `chrono` features so only the changes in Cargo.toml are...
Man, for the next version each dependency is getting its own feature. My comment was more about that in the changes in this PR use the `#[cfg(feature = "chrono")]` which...
> That would actually be cool - but also kind of the opposite of what this PR is doing? I Not that different. There could still be a list of...