add MarkdownV2 (cherry picked from commit dc71b50b19cb81acc603a6ef671714d017d6b333)
an.groshev an.groshev@tensor.ru
Wed, 01 Jul 2020 20:03:05 +0300
1 files changed,
13 insertions(+),
0 deletions(-)
jump to
M
helpers.go
→
helpers.go
@@ -469,6 +469,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{