使用电报bot(telegraf),nodejs发送markdown文本

时间:2018-10-27 14:28:26

标签: node.js telegram telegram-bot telegraf

如何通过在nodejs上使用telegraf库通过电报机器人发送降价文本?

4 个答案:

答案 0 :(得分:2)

@property
def available(self):
    return self.event_date > timezone.now().date()

答案 1 :(得分:2)

使用 telegraf v4.3.0,我使用以下代码使其工作:

const bot = new Telegraf(token);
bot.telegram.sendMessage('my chat id', 'my text', { parse_mode: 'MarkdownV2' });

答案 2 :(得分:0)

如果您在导入的模块中使用上下文对象ctx进行答复而又不想导入Telegraf,则可以使用:

ctx.reply('some _text_', {reply_markup: 'markdown'})

答案 3 :(得分:0)

ctx.replyWithMarkdown(MESSAGE)