I’m building a chatbot with the chat widget function of N8N itself, but I can’t figure out how to make any links in the chat widget clickable. They all come up as non clickable in both testing widget and embedded widget.
Does anyone know how I can make the links clickable?
To ensure links are clickable within your N8N chat widget (including the testing widget, embedded widget, and hosted chat), you can achieve this by using Markdown syntax.
Within your chatbot’s response, format your links as follows:
[link text](link url)
Example:
If you want to link to Google, you would write:
[Google](https://www.google.com)
This Markdown formatting will render the link as clickable in all N8N chat widget environments.