Looking into a templating engine for #Rust. Preferably #jinja2 like. https://github.com/Keats/tera is an option, but does anyone have any suggestions? #rustlang
@agnew_hawk @daubers I would recommend Askama if you want to return templates from a server because the templates are compiled and checked at compile time.
If you want to use templating to build something once before serving it (like with a static site generators), then I would recommend Tera. The static site generator Zola uses it. It is more flexible and you will see errors on building the site anyway.