HTML formatting for pushover notifications

Hi HA community!

Has anyone successfully applied basic HTML formatting to pushover notifications? I’d like to improve the readability of the notifications, so the basic tags and line breaks would help a bunch. I’ve tried escaping the message content but it still gets displayed literally in pushover.

  data:
    message: "This is the <b>message</b>"

Shows as:

This is the <b>message</b>

Thanks!

P.S. here are the formats supported by pushover API:

  • <b>word</b> - display word in bold
  • <i>word</i> - display word in italics
  • <u>word</u> - display word underlined
  • <font color="#0000ff">word</font> - display word in blue text
  • <a href="http://example.com/">word</a> - display word as a tappable link to http://example.com/
1 Like

Oops, nevermind, figured it out. Just needed to add support for HTML to the message

  data:
    message: "This is the <b>message</b>"
    html: 1