如何让 pynotify 显示换行符和 HTML?

发布于 2024-09-08 22:20:15 字数 427 浏览 4 评论 0原文

如何让 pynotify 在通知中显示换行符和 HTML?

这是我得到的:

>>> import pynotify
>>> n = pynotify.Notification ("This is a test.\n\nAnd this too!",
                               "","notification-message-im")
>>> n.show()

与预期相反,两个句子之间没有换行符。 (至少在 Ubuntu 10.04 上不是)

另外,有没有办法在通知中包含简单的 HTML,例如

How can I make pynotify display line breaks and HTML in the notifications?

Here is what I got:

>>> import pynotify
>>> n = pynotify.Notification ("This is a test.\n\nAnd this too!",
                               "","notification-message-im")
>>> n.show()

Contrary to what is expected, there is no line-break between the two sentences. (At least not on Ubuntu 10.04)

Also, is there a way to include simple HTML in the notifications, like <b>, <br>, or <i>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星星的軌跡 2024-09-15 22:20:15

您可以在消息正文中使用“\n”,但不能在摘要中使用。

>>> n = pynotify.Notification("summary", "body\n next line", "dialog-warning")
>>> n.show()

You can use '\n' in message body but not in summary.

>>> n = pynotify.Notification("summary", "body\n next line", "dialog-warning")
>>> n.show()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文