diff --git a/docs/sources/static/configuration/agent-management.md b/docs/sources/static/configuration/agent-management.md index ac49a2677040..e420afa01855 100644 --- a/docs/sources/static/configuration/agent-management.md +++ b/docs/sources/static/configuration/agent-management.md @@ -164,4 +164,8 @@ snippets: app: app1 ``` -> **Note:** Base configurations and snippets can contain go's [text/template](https://pkg.go.dev/text/template) actions. If you need preserve the literal value of a template action, you can escape them using backticks (for example, `{{ .template_inside_template }}`). \ No newline at end of file +> **Note:** Base configurations and snippets can contain go's [text/template](https://pkg.go.dev/text/template) actions. If you need preserve the literal value of a template action, you can escape them using backticks.Example: + +``` +{{ `{{ .template_var }}` }} +```