Templating
Templating language
Where templating has been made available in fodder, it uses Tera as the templating language. Tera is a template engine for Rust that is based on Jinja2. It is a full-featured template engine with a lot of functionality. For more information on Tera, please see the Tera documentation.
References
When we make reference to a field in a template, we are referring to the name of the field. For example, if we have a field called Name and we want to reference it in a template, we would use {{ refs['Name'].raw }}. This will return the raw value of the field. If we wanted to use the formatted value, we would use {{ refs['Name'].formatted }}. Depending on your particular use-case, you may want to use one or the other.