Ning Sun
Ning Sun
If there is only one level of recursing, you can use `lookup` helper. See this example: https://sunng87.github.io/handlebars-rust/?tpl=Hello%20world%20from%20%7B%7Blookup%20this%20name%7D%7D&data=%7B%22name%22%3A%20%22realname%22%2C%20%22realname%22%3A%20%22tom%22%7D
@dependabot rebase
@dependabot rebase
Thank you for reporting. I can reproduce this issue with 4.x and 5.0 beta. links for comparing with javascript version: - https://sunng87.github.io/handlebars-rust/?tpl=%3Cul%3E%0A%20%20%7B%7B%23each%20a%7D%7D%0A%20%20%20%20%3Cli%3E%7B%7Bthis%7D%7D%3C%2Fli%3E%0A%20%20%7B%7B%2Feach%7D%7D&data=%7B%22a%22%3A%20%5B1%2C%202%5D%7D - https://sunng87.github.io/handlebars-rust/?tpl=%3Cul%3E%0A%20%20%7B%7B%23each%20a%7D%7D%0A%20%20%20%20%3Cli%3E%7B%7Bthis%7D%7D%3C%2Fli%3E%0A%20%20%7B%7B%2Feach%7D%7Da&data=%7B%22a%22%3A%20%5B1%2C%202%5D%7D
We might be able to do it with a helper, that logs or just counts its references. For example, write `{{tracked Name}}` in your template, given `tracked` is a helper...
It seems there is an incompatible path resolution with `with` block. In handlebars-rust, you can use `{{@../key}}` to get `mary`. I will look into this issue and try to fix...
by the way you might want to check my pgwire https://github.com/sunng87/pgwire as an alternative when implementing the protocol support for pg
I've tested with both all-the-icons and nerd-icons, the error persists until I turned off heading icons and keeps only file icons. So I believe it has something to do with...
After checking `customize-variable`, I found `dashboard-heading-icons` is set to `nil`.
This reminds me a discussion with @zyy17 about an general abstraction of task spawning: - an implementation independent spawn function as entrypoint - option to spawn to current thread, to...