Vincent Prouillet
Vincent Prouillet
Right now we can put the data in 2 different places for the default language in config.toml: the base file and `language.DEFAULT_LANGUAGE`. Those are not currently merged and zola will...
Has anyone used it? The last time I looked at tree-sitter it didn't have many grammars but a quick look shows it's getting better. Our syntect syntaxes are stuck on...
Found while fuzzing [Tera v1](https://github.com/Keats/tera/tree/v1). The following expression is very slow: https://github.com/Keats/tera/blob/v1/src/tera.rs#L1028 and adding a level of recursion (eg `_(p=__(p=[_(p=__(p=[_(p=[_(p=[_1(p=[_(p=[_1`) will timeout As far as I can see, the issue...
On top of https://github.com/Keats/tera/issues?q=is%3Aopen+is%3Aissue+label%3A%22For+next+major+version%22 ## Parser ### Operator precedence and expressions ✅ Parentheses should work everywhere and precedence should make sense. This is mostly already implemented in a new parser...
It seems that `pest` is not maintained anymore and we do have some bugs (unlikely to trigger in practice but still) because of it. What are the best options right...
It is the main bottleneck in terms of performance. Some previous thoughts are on https://github.com/Keats/tera/issues/340
Bootstrap now compiles without errors (🎊 ) but it produces some invalid CSS as it seems it didn't process everything. The following bits are present in rsass output: ``` @extend...
Hey, I've just seen this pr https://github.com/erikras/react-redux-universal-hot-example/pull/833 which looks exactly like what I need to do in my own app as well (redux-router -> redux-simple-router + changing from middleware to...
Macros are meant to be pure functions `(args) -> String`. The fact that you can access `config` etc from inside is a pretty big bug in Tera and will very...