From f6c01ae1bcaf1fb554aff9b7b14f12e04cd4fc27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 3 Oct 2022 15:42:51 +0200 Subject: [PATCH] Add missing raw wrappers to automation examples (#24355) --- source/_integrations/github.markdown | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/_integrations/github.markdown b/source/_integrations/github.markdown index 413db8a37d9..fc1cabf2ccb 100644 --- a/source/_integrations/github.markdown +++ b/source/_integrations/github.markdown @@ -127,6 +127,8 @@ you need to replace it with services and entities that you have in your installa This example uses the [Latest release](#latest-release) entity provided by this integration, and a [notify](/integrations/notify) service, +{% raw %} + ```yaml trigger: - platform: state @@ -141,10 +143,14 @@ action: ``` +{% endraw %} + ### Notify new stars This example uses the [Stars](#diagnostic-entities) diagnostic entity provided by this integration, and a [notify](/integrations/notify) service, +{% raw %} + ```yaml trigger: - platform: state @@ -157,3 +163,5 @@ action: github/repository was starred again! Total stars are now: {{ trigger.to_state.state }} ``` + +{% endraw %}