From 6c632ae67d8262fd903ba85a94869280fcb6069c Mon Sep 17 00:00:00 2001 From: Dubh Ad Date: Mon, 13 Jun 2022 20:45:36 +0100 Subject: [PATCH] Update pushover.markdown (#23093) The YAML was broken --- source/_integrations/pushover.markdown | 34 +++++++++++++------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/source/_integrations/pushover.markdown b/source/_integrations/pushover.markdown index fc4fdbf275f..65c62e1ff9c 100644 --- a/source/_integrations/pushover.markdown +++ b/source/_integrations/pushover.markdown @@ -48,14 +48,14 @@ Example Automation: ```yaml - service: notify.entity_id - data: - message: "This is the message" - title: "Title of message" - data: - url: "https://www.home-assistant.io/" - sound: pianobar - priority: 0 - attachment: "local/image.png" + data: + message: "This is the message" + title: "Title of message" + data: + url: "https://www.home-assistant.io/" + sound: pianobar + priority: 0 + attachment: "local/image.png" ``` Component specific values in the nested `data` section are optional. @@ -66,15 +66,15 @@ To use a specific Pushover device, set it using `target`. If one of the entered ```yaml - service: notify.entity_id - data: - message: "This is the message" - title: "Title of message" - target: - - pixel3 - - pixel4a - data: - sound: pianobar - priority: 0 + data: + message: "This is the message" + title: "Title of message" + target: + - pixel3 + - pixel4a + data: + sound: pianobar + priority: 0 ```