Skip to content

Commit

Permalink
Fix alexa_confirm.yaml example (home-assistant#16086)
Browse files Browse the repository at this point in the history
Need a ">" before the template to make it valid yaml.  Current example did not pass 'Check Configuration' within home assistant.
  • Loading branch information
filcole authored Jan 4, 2021
1 parent e4b1244 commit 037c5f5
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions source/_integrations/alexa.intent.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit 037c5f5

Please sign in to comment.