New helpers added
- indent: Indents a given string using the provided indentation. Eg:
{{ indent "somestring with line breaks" " " }}
- loadJson: Unmarshals a JSON string into a
map[string]interface{}
. Eg:{{ $obj := loadJson "{\"someKey\": 1234}" }}
- mathAdd: Adds all the provided numbers together and returns the result
- mathMult: Multiplies all the provided numbers together and returns the result