YAML list indentation consistency (#15138)

This commit is contained in:
Villhellm 2020-10-09 07:50:41 -07:00 committed by GitHub
parent e9f1e30159
commit 590e6d8507
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,11 +26,11 @@ Home Assistant has its own Cast application to show the Home Assistant UI on any
cast_downstairs_on_kitchen: cast_downstairs_on_kitchen:
alias: Show Downstairs on kitchen alias: Show Downstairs on kitchen
sequence: sequence:
- data: - data:
dashboard_path: lovelace dashboard_path: lovelace
entity_id: media_player.kitchen entity_id: media_player.kitchen
view_path: downstairs view_path: downstairs
service: cast.show_lovelace_view service: cast.show_lovelace_view
``` ```
<div class='note'> <div class='note'>
@ -53,15 +53,15 @@ Optional:
'cast_youtube_to_my_chromecast': 'cast_youtube_to_my_chromecast':
alias: Cast YouTube to My Chromecast alias: Cast YouTube to My Chromecast
sequence: sequence:
- data: - data:
entity_id: media_player.my_chromecast entity_id: media_player.my_chromecast
media_content_type: cast media_content_type: cast
media_content_id: ' media_content_id: '
{ {
"app_name": "youtube", "app_name": "youtube",
"media_id": "dQw4w9WgXcQ" "media_id": "dQw4w9WgXcQ"
}' }'
service: media_player.play_media service: media_player.play_media
``` ```
### [Supla](https://www.supla.fi/) ### [Supla](https://www.supla.fi/)
@ -78,15 +78,15 @@ Optional:
'cast_supla_to_my_chromecast': 'cast_supla_to_my_chromecast':
alias: Cast supla to My Chromecast alias: Cast supla to My Chromecast
sequence: sequence:
- data: - data:
entity_id: media_player.my_chromecast entity_id: media_player.my_chromecast
media_content_type: cast media_content_type: cast
media_content_id: ' media_content_id: '
{ {
"app_name": "supla", "app_name": "supla",
"media_id": "3601824" "media_id": "3601824"
}' }'
service: media_player.play_media service: media_player.play_media
``` ```
## Advanced use ## Advanced use