From 66397d2929eca001c123ff6a9ad7eb611ca0901d Mon Sep 17 00:00:00 2001 From: Corey Edwards Date: Sun, 26 May 2024 04:59:24 -0600 Subject: [PATCH] Add raw tags to escape Jinja syntax in example (#32949) --- source/_integrations/twilio.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/_integrations/twilio.markdown b/source/_integrations/twilio.markdown index b9966083c34..0b5b497abe4 100644 --- a/source/_integrations/twilio.markdown +++ b/source/_integrations/twilio.markdown @@ -74,6 +74,7 @@ The above opens the garage door when the number `+1XXXXXXXXXXX` calls `+1YYYYYYY An example of an SMS handler: +{% raw %} ```yaml alias: Twilio incoming trigger: @@ -91,3 +92,4 @@ action: incoming twilio message from {{sender}}: {{ message }} all event data: {{ trigger.event.data }} ``` +{% endraw %}