Format the text of the notifications

Hello there,
I searched everywhere but couldn’t find any info about formatting the text in your notifications.
Is there any possibility to format it like bold or italic?

I am grateful for every answer :slight_smile:

Welcome to the forums!

In persistent notifications you can use markdown formatting.

In other notifications such as email for example, you can use HTML:


service: notify.gmail
data:
  message: test
  data:
    html: >-
        <h1 style="color: green">Formatted notifications are <span style="color: pink">great!</span></h1>
        <p>Just use a <em>HTML editor!</em></p>


1 Like

Thanks :slight_smile: That helped a lot :slight_smile: