我已经尝试过了
elif command == 'bold':
telegram_bot.sendMessage (chat_id, str("*bold*"), reply_markup=markup)
但是它正在回复*bold*
而不是粗体
答案 0 :(得分:1)
您需要提供一个parse_mode
参数(parse_mode =“ Markdown”)。
否则,您将看不到任何降价样式。
sendMessage(chat_id, "*this text is bold*", parse_mode= 'Markdown')
请参见
https://telepot.readthedocs.io/en/latest/reference.html#telepot.Bot.sendMessage
答案 1 :(得分:0)
摘录自-> How can I write bold in python telegram bot
您应该使用:
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)
答案 2 :(得分:0)
我在Markdown parse_mode中遇到了同样的问题。我自己编写了send_message,没有使用Telepot的sendMessage方法。在这种情况下,更容易理解如何处理此问题:
url = 'https://api.telegram.org/bot<token>'
def send_message(chat_id, text='empty line', parse_mode = 'Markdown'):
URL = url + 'sendMessage'
answer = {'chat_id': chat_id, 'text': text, 'parse_mode': 'Markdown'}
r = requests.post(URL, json=answer)
return r.json()
if (text == '/bold'):
send_message(chat_id, 'Here comes the'+'*'+'bold'+'*'+'text!')
另一方面,您可以使用curl发送粗体文本:
if (text == '/bold'):
URL = url + 'sendMessage?chat_id='+chat_id+'&text=*Here comes the bold text*&parse_mode=Markdown'
answer = {'chat_id': chat_id, 'text': text}
r = requests.post(URL, json=answer)