Add support for Markdown/HTML in NewInlineQueryResultArticle

This commit is contained in:
Maxim Martyanov 2016-06-02 22:42:05 +03:00
parent 217764ba45
commit 64f1ab7a89
No known key found for this signature in database
GPG key ID: F937B90F5F5D40A2
2 changed files with 5 additions and 3 deletions

View file

@ -317,13 +317,14 @@ func NewWebhookWithCert(link string, file interface{}) WebhookConfig {
}
// NewInlineQueryResultArticle creates a new inline query article.
func NewInlineQueryResultArticle(id, title, messageText string) InlineQueryResultArticle {
func NewInlineQueryResultArticle(id, title, messageText string, parseMode string) InlineQueryResultArticle {
return InlineQueryResultArticle{
Type: "article",
ID: id,
Title: title,
InputMessageContent: InputTextMessageContent{
Text: messageText,
ParseMode: parseMode,
},
}
}