Сделать текст жирным в сообщении от бота node-telegram-bot-api

Как сделать текст жирным в сообщении от бота в telegram

import TelegramBot from 'node-telegram-bot-api';

const bot = new TelegramBot(token, { polling: true });

console.log("Started");

bot.on('message', async (msg) => {
    const chatId = msg.chat.id;
    const text = msg.text.toLowerCase();

    if (text == '123') {
        await bot.sendMessage(chatId, '*bold*');
    }
})


Ответы (1 шт):

Автор решения: Mellow

await bot.sendMessage(chatId, 'bold', { parse_mode: 'HTML' });

→ Ссылка