I am trying to send a colored text message to a user as reply, using sendMessage with HTML parsing.
bot.sendMessage(update.message.chat_id, "<span style=\"color:blue\">foo</span>", telegram.ParseMode.HTML)
Sending <span style="color:blue">foo</span> doesn't work, as span is not supported: 
Bad Request: Can't parse message text: Unsupported start tag "span" at byte offset 0 (400)
I am using the python-telegram-bot v. 4.0.3.
Is there another way?
 
     
     
    