all repos — telegram-bot-api @ dc71b50b19cb81acc603a6ef671714d017d6b333

Golang bindings for the Telegram Bot API

add MarkdownV2
an.groshev an.groshev@tensor.ru
Wed, 01 Jul 2020 20:03:05 +0300
commit

dc71b50b19cb81acc603a6ef671714d017d6b333

parent

7434b0456e81b6448b591f4fdf8efd7d1a734ae8

2 files changed, 16 insertions(+), 2 deletions(-)

jump to
M configs.goconfigs.go

@@ -36,8 +36,9 @@ )

// Constant values for ParseMode in MessageConfig const ( - ModeMarkdown = "Markdown" - ModeHTML = "HTML" + ModeMarkdown = "Markdown" + ModeMarkdownV2 = "MarkdownV2" + ModeHTML = "HTML" ) // Library errors
M helpers.gohelpers.go

@@ -438,6 +438,19 @@ },

} } +// NewInlineQueryResultArticleMarkdownV2 creates a new inline query article with MarkdownV2 parsing. +func NewInlineQueryResultArticleMarkdownV2(id, title, messageText string) InlineQueryResultArticle { + return InlineQueryResultArticle{ + Type: "article", + ID: id, + Title: title, + InputMessageContent: InputTextMessageContent{ + Text: messageText, + ParseMode: "MarkdownV2", + }, + } +} + // NewInlineQueryResultArticleHTML creates a new inline query article with HTML parsing. func NewInlineQueryResultArticleHTML(id, title, messageText string) InlineQueryResultArticle { return InlineQueryResultArticle{