From 22aebe52bff057b853ef5d06340264b1b5ad255e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 10 Oct 2019 16:24:03 +0200 Subject: [PATCH] Move raw (#10691) --- source/_integrations/ifttt.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/_integrations/ifttt.markdown b/source/_integrations/ifttt.markdown index 348ca13ccca..20067909284 100644 --- a/source/_integrations/ifttt.markdown +++ b/source/_integrations/ifttt.markdown @@ -31,6 +31,7 @@ For example, set the body of the IFTTT webhook to: You then need to consume that incoming information with the following automation: +{% raw %} ```yaml automation: - id: this_is_the_automation_id @@ -43,9 +44,10 @@ automation: condition: [] action: - data_template: - entity_id: '{% raw %}{{ trigger.event.data.entity_id }}{% endraw %}' - service_template: '{% raw %}{{ trigger.event.data.service }}{% endraw %}' + entity_id: '{{ trigger.event.data.entity_id }}' + service_template: '{{ trigger.event.data.service }}' ``` +{% endraw %} ## Sending events to IFTTT