如何让 pynotify 显示换行符和 HTML?
如何让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在消息正文中使用“\n”,但不能在摘要中使用。
You can use '\n' in message body but not in summary.