Does anyone know if adding a new line in a Notific...
# intellij-plugins
r
Does anyone know if adding a new line in a Notification content is possible? I’ve tried this but doesn’t seem to work sad panda
Copy code
Notifications.Bus.notify(
    Notification(
        "com.example",
        "Title",
        "Add new line\nI'm a new line",
        NotificationType.INFORMATION,
    )
)
a
Try with
<br>
?
r
Aha, that works! Thank you!! thank you frog
👍 1