Results 1383 comments of Vincent Prouillet

Yes it does support u128 with the feature mentioned. However enabling that means every single number will now be stored as a string, which would be a breaking change.

I don't think you can ship assets without including them in the binary? I've made https://github.com/Keats/kickstart as a scaffolding tool but it still requires you to provide the templates externally....

Yes, `truncate` in Tera works at the string level and has no knowledge about HTML. I think you can do `{{ page.content | striptags | truncate(length=300) | safe }}? Someone...

Don't use the json! macro, use the Context from Tera. This is just going to iterate on the JSON string

You can only pass things that implement `Serialize`. It looks like at least one of `{user, c_api, query_result}` does not

I don't like the builder pattern but the macro approach could work.

You just need to include svgs in your template glob (or however you're loading your templates)

I can't remember why its using 'static tbh I wouldn't change it in the current version but we can add it to the https://github.com/Keats/tera/issues/637 list

I'm interested in seeing the diff but I'm not planning to merge any of that in v1. [v2](https://github.com/Keats/tera2) uses bytecode and is optimizing some stuff like macro lookup in a...

It could work as a glob I think