Skip to content
Dashboard

Chat SDK now supports rich text in Telegram

lib/bot.ts
bot.onNewMention(async (thread) => {
await thread.post({
markdown: [
"## Deployment status",
"",
"| Service | Status |",
"| --- | --- |",
"| API | ✅ Ready |",
"| Web | 🚀 Building |",
].join("\n"),
});
});

Post a markdown table and it renders as a native Telegram rich message

Ready to deploy?