From 9c0fb3592279bce39b14027d7760239ccf0991a5 Mon Sep 17 00:00:00 2001 From: tomlut <10679300+tomlut@users.noreply.github.com> Date: Tue, 1 Sep 2020 12:29:26 +0500 Subject: [PATCH] Corrected template example (#14365) Corrected the example for square bracket notation. Without this change the open and closing quotes would be `'{{ value_json['` --- source/_docs/configuration/templating.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/configuration/templating.markdown b/source/_docs/configuration/templating.markdown index 9ebf93a27f2..4698975c86d 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -401,7 +401,7 @@ Just use the "Square bracket notation" to get the value. {% raw %} ```yaml -'{{ value_json['values']['temp'] }}' +"{{ value_json['values']['temp'] }}" ``` {% endraw %}