all repos — telegram-bot-api @ 86e4fadcb08f7b67df0f7913f06ee13c59dd67b7

Golang bindings for the Telegram Bot API

add markdown support
Jqs7 7@jqs7.com
Sat, 12 Sep 2015 19:30:49 +0800
commit

86e4fadcb08f7b67df0f7913f06ee13c59dd67b7

parent

ae7c1b4e22f9071c5314a3d0e4c97df4b2743c32

1 files changed, 9 insertions(+), 0 deletions(-)

jump to
M methods.gomethods.go

@@ -38,10 +38,16 @@ // APIForbidden happens when a token is bad

APIForbidden = "forbidden" ) +// Constant values for ParseMode in MessageConfig +const ( + ModeMarkdown = "Markdown" +) + // MessageConfig contains information about a SendMessage request. type MessageConfig struct { ChatID int Text string + ParseMode string DisableWebPagePreview bool ReplyToMessageID int ReplyMarkup interface{}

@@ -262,6 +268,9 @@ v := url.Values{}

v.Add("chat_id", strconv.Itoa(config.ChatID)) v.Add("text", config.Text) v.Add("disable_web_page_preview", strconv.FormatBool(config.DisableWebPagePreview)) + if config.ParseMode != "" { + v.Add("parse_mode", config.ParseMode) + } if config.ReplyToMessageID != 0 { v.Add("reply_to_message_id", strconv.Itoa(config.ReplyToMessageID)) }