From 4d61baa3e489ef4039aae9844b592da15d34d52e Mon Sep 17 00:00:00 2001 From: David N Perkins Date: Thu, 3 Feb 2022 10:41:31 -0500 Subject: [PATCH] Added pathPrefix function to the template reference documentation (#10222) * Added pathPrefix function to the template reference documentation Signed-off-by: David N Perkins * PR suggestions Signed-off-by: David N Perkins * Switch wording back Signed-off-by: David N Perkins --- docs/configuration/template_reference.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/configuration/template_reference.md b/docs/configuration/template_reference.md index 0da7f7ad6..34557ecd8 100644 --- a/docs/configuration/template_reference.md +++ b/docs/configuration/template_reference.md @@ -84,6 +84,7 @@ versions. | args | []interface{} | map[string]interface{} | This converts a list of objects to a map with keys arg0, arg1 etc. This is intended to allow multiple arguments to be passed to templates. | | tmpl | string, []interface{} | nothing | Like the built-in `template`, but allows non-literals as the template name. Note that the result is assumed to be safe, and will not be auto-escaped. Only available in consoles. | | safeHtml | string | string | Marks string as HTML not requiring auto-escaping. | +| pathPrefix | _none_ | string | The external URL [path](https://pkg.go.dev/net/url#URL) for use in console templates. | ## Template type differences