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.
This commit is contained in:
Phil Cole 2021-01-04 10:11:43 +00:00 committed by GitHub
parent e4b124479a
commit 037c5f5f34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -306,7 +306,8 @@ First create a file called `alexa_confirm.yaml` with something like the followin
{% raw %}
```text
{{ [
>
{{ [
"OK",
"Sure",
"If you insist",
@ -322,7 +323,7 @@ First create a file called `alexa_confirm.yaml` with something like the followin
"I will",
"As you decree, so shall it be",
"No Problem"
] | random }}
] | random }}
```
{% endraw %}