pongo2 register custom function

Developer from somewhere

Say you want to create a function that returns the value of an environment variable:

func get_env(name *pongo2.Value) *pongo2.Value {
	return pongo2.AsValue(os.Getenv(name.String()))
}

To use it in the templates, register it on the pongo2.Context:

context := pongo2.Context{}
context["get_env"] = get_env

Last step, is to pass that context when you render the view.