diff --git a/content/en/docs/chart_template_guide/function_list.md b/content/en/docs/chart_template_guide/function_list.md index 57cdc4ef5..b8ae2e3b7 100644 --- a/content/en/docs/chart_template_guide/function_list.md +++ b/content/en/docs/chart_template_guide/function_list.md @@ -701,6 +701,7 @@ The following type conversion functions are provided by Helm: - `fromJson`: Convert a JSON string to an object. - `fromJsonArray`: Convert a JSON array to a list. - `toYaml`: Convert list, slice, array, dict, or object to indented yaml, can be used to copy chunks of yaml from any source. This function is equivalent to GoLang yaml.Marshal function, see docs here: https://pkg.go.dev/gopkg.in/yaml.v2#Marshal +- `toYamlPretty`: Convert list, slice, array, dict, or object to indented yaml, can be used to copy chunks of yaml from any source. This function is equivalent to `toYaml`, except list items will be indented two spaces past the parent key. - `toToml`: Convert list, slice, array, dict, or object to toml, can be used to copy chunks of toml from any source. - `fromYamlArray`: Convert a YAML array to a list.