如何使用Telegram Python机器人发送粗体文本

2022-02-25 00:00:00 python telegram bots

问题描述

我正在用Python编写一个电报机器人。我想用粗体字母发送信息。我尝试将消息同时封闭在***中,但没有解决问题。

是否有用于标记或HTML格式设置的函数或方法?


解决方案

您应该使用:

bot.send_message(chat_id=chat_id, text="*bold* Example message", 
                parse_mode=telegram.ParseMode.MARKDOWN)

或:

bot.send_message(chat_id=chat_id, text='<b>Example message</b>', 
                  parse_mode=telegram.ParseMode.HTML)
有关详细信息,请访问: https://github.com/python-telegram-bot/python-telegram-bot/wiki/Code-snippets#message-formatting-bold-italic-code-

相关文章