From 037c5f5f343acb96c34d806937d4860ec98fde58 Mon Sep 17 00:00:00 2001 From: Phil Cole Date: Mon, 4 Jan 2021 10:11:43 +0000 Subject: [PATCH] Fix alexa_confirm.yaml example (#16086) Need a ">" before the template to make it valid yaml. Current example did not pass 'Check Configuration' within home assistant. --- source/_integrations/alexa.intent.markdown | 35 +++++++++++----------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/source/_integrations/alexa.intent.markdown b/source/_integrations/alexa.intent.markdown index eb6fb562bfd..e07127c2640 100644 --- a/source/_integrations/alexa.intent.markdown +++ b/source/_integrations/alexa.intent.markdown @@ -306,23 +306,24 @@ First create a file called `alexa_confirm.yaml` with something like the followin {% raw %} ```text -{{ [ - "OK", - "Sure", - "If you insist", - "Done", - "No worries", - "I can do that", - "Leave it to me", - "Consider it done", - "As you wish", - "By your command", - "Affirmative", - "Yes oh revered one", - "I will", - "As you decree, so shall it be", - "No Problem" -] | random }} +> + {{ [ + "OK", + "Sure", + "If you insist", + "Done", + "No worries", + "I can do that", + "Leave it to me", + "Consider it done", + "As you wish", + "By your command", + "Affirmative", + "Yes oh revered one", + "I will", + "As you decree, so shall it be", + "No Problem" + ] | random }} ``` {% endraw %}