usetera::Tera;usecrate::Parameters;// Renders the given `template` using the `context` provided as `Parameters`.
// Returns a `Result` with a `String` containing the rendered template or an error.
pubfnrender(template:&str, context:&Parameters)->Result<String, tera::Error>{Tera::one_off(template,&context.to_tera(),false)}