Microsoft Bot Framework - Webchat text as html

后端 未结 1 1502
粉色の甜心
粉色の甜心 2020-12-11 09:08

I\'m using Microsoft Bot Framework (Node JS), with Webchat channel. The webchat shows HTML tags as plain text (\"
bla bla
\")
while I want i

相关标签:
1条回答
  • 2020-12-11 09:27

    Microsoft Bot Framework supports only 2 types of text format:

    • Markdown
    • XML (The textFormat xml is supported only by the Skype channel.)

    Hence it is normal that you don't have what you wanted.

    See documentation here: https://docs.microsoft.com/en-us/bot-framework/bot-service-channel-inspector#text-formatting

    As a consequence, you have to transform your html to markdown to get your intended output, but you will be limited to the capabilities of markdown and the restrictions of markdown rendering in the channels.

    You can check markdown rendering by channel here: https://docs.botframework.com/en-us/channel-inspector/channels/WebChat?f=Markdown&e=example1

    0 讨论(0)
提交回复
热议问题