node.jstelegramtelegram-bottelegraf

Send markdown text with telegram bot (telegraf), nodejs


How to send markdown text by telegram bot using telegraf library on nodejs?


Solution

  • const token = 'YOUR TOKEN';
    const Telegraf = require('telegraf')
    const extra = require('telegraf/extra')
    const markup = extra.markdown()
    
    const telegram = new Telegraf(token)
    
    telegram.telegram.sendMessage('there chat id', 'your message', markup)