I have a text stored in a variable which I extracted from xml file, now there are some keywords in that text which I want to highlight or bold. Those words are saved in slots, now I want to make those words bold in bot response. Please help !!!
I have a text stored in a variable which I extracted from xml file, now there are some keywords in that text which I want to highlight or bold. Those words are saved in slots, now I want to make those words bold in bot response. Please help !!!
Hi @Aman10. If you want to highlight
or bold output text, you will need a frontend chat UI that can render it. If it can handle markdown, then you could add **
to both sides of the keyword or if it can handle html, you would put it between bold tags <b> </b>
@tyd Thanks for info