Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to send code block with telegram bot in PHP language.
I already use "`", but I did not get any result.

I use HTML parse_mode.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
772 views
Welcome To Ask or Share your Answers For Others

1 Answer

there are 2 formatting options: https://core.telegram.org/bots/api#formatting-options

also see parse_mode in sendMessage: https://core.telegram.org/bots/api#sendmessage

you should set it in this param and then use concurrent formatting (markdown in your case)

UPD if you use html mode, use <code> for inline block and <pre> for multiline


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...