From 533945f95c0d7122495790210c586045dcf2e8c1 Mon Sep 17 00:00:00 2001 From: kepath <35769141+kepath@users.noreply.github.com> Date: Wed, 9 Nov 2022 08:40:05 +0000 Subject: [PATCH] Update templating.markdown (#24805) --- source/_docs/configuration/templating.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_docs/configuration/templating.markdown b/source/_docs/configuration/templating.markdown index 662a24e3112..42c67a81e19 100644 --- a/source/_docs/configuration/templating.markdown +++ b/source/_docs/configuration/templating.markdown @@ -118,7 +118,7 @@ Entities that are on: {{ ['light.kitchen', 'light.dinig_room'] | select('is_state', 'on') | list }} ``` -{% endraw% } +{% endraw %} Other state examples: {% raw %} @@ -203,7 +203,7 @@ List of friendly names: {{ ['binary_sensor.garage_door', 'binary_sensor.front_door'] | map('state_attr', 'friendly_name') | list }} ``` -{% endraw% } +{% endraw %} List of lights that are on with a brightness of 255: @@ -213,7 +213,7 @@ List of lights that are on with a brightness of 255: {{ ['light.kitchen', 'light.dinig_room'] | select('is_state', 'on') | select('is_state_attr', 'brightness', 255) | list }} ``` -{% endraw% } +{% endraw %} ### Working with Groups