How do I utter a message, displaying results based on a datasheet, and attach a hyperlink within the text?
I have another open thread on stackoverflow since the UI is better for asking questions:
How do I utter a message, displaying results based on a datasheet, and attach a hyperlink within the text?
I have another open thread on stackoverflow since the UI is better for asking questions:
Just answered the question in Stackoverflow.
Awesome, thank you so much @ChikkaUdayaSai!
For anyone else, who are thinking about the solution:
Displaying links in the front end is different for different platforms. Rasa X uses Markdown Format to display the links.
So, instead of the normal anchor tag, you need to use Markdown link format for display.
Change
hypNum = '<a href="tel:%s">%s</a>' % (n, formatNum)
to this
hypNum = '[%s](tel:%s)' % (formatNum,n)
Hope this solves your issue.