Corrected template example (#14365)

Corrected the example for square bracket notation. Without this change the open and closing quotes would be `'{{ value_json['`
This commit is contained in:
tomlut 2020-09-01 12:29:26 +05:00 committed by GitHub
parent fdfe355dd2
commit 9c0fb35922
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 %}