Convert Markdown text from an agent response to Slack Block Kit blocks.
Handles:
header
section
mrkdwn
Raw Markdown text from an agent response.
Array of Slack Block Kit block objects.
const blocks = markdownToBlocks('# Hello\n\nThis is **bold** text.');// [// { type: 'header', text: { type: 'plain_text', text: 'Hello' } },// { type: 'section', text: { type: 'mrkdwn', text: 'This is *bold* text.' } }// ] Copy
const blocks = markdownToBlocks('# Hello\n\nThis is **bold** text.');// [// { type: 'header', text: { type: 'plain_text', text: 'Hello' } },// { type: 'section', text: { type: 'mrkdwn', text: 'This is *bold* text.' } }// ]
Convert Markdown text from an agent response to Slack Block Kit blocks.
Handles:
headerblockssectionblocks with triple backtick wrappingsectionblocks withmrkdwnformatting