I am trying to get a multi-line notification on my Android Home Assistant app. I can not do it. I have tried all sorts of variants of {{- ‘\n’ -}} - but without luck. Is this possible to do? Here’s my automation notification I want to separate into multiple lines:
# Morning Message ##
- alias: morning_message
trigger:
- platform: time
at: '07:00:00'
action:
service: notify.mobile_app_my_mobile
data_template:
title: "Good Morning!"
message: "Temperatures:
Living Room: {{states.sensor.living_room_temperature.state}} °C
Kitchen: {{states.sensor.kitchen_temperature.state}} °C
Office: {{states.sensor.office_temperature.state}} °C"
Any ideas?