Convert text to URL

Hi,

I am writing below text to comments section in an applicaiton. I would like to make it as URL which is clickable to open the page for end user to access it.

Can Someone please suggest. Highly appreciated. Thanks.

https://cloud.uipath.com/xxxxx/DefaultTenant/actions_/tasks/
{taskID}

First of all the application has to be able to handle links or accepting links. Most of the time it is smart enough to know when your input is a link and automatically makes it a hyperlink. If not, try typing it as an html code like

<a href='https://cloud.uipath.com/xxxxx/DefaultTenant/actions_/tasks/'>Link text here</a>
1 Like

Hi @krishbcd

<a href="https://cloud.uipath.com/xxxxx/DefaultTenant/actions_/tasks/1">{taskID}</a>

Replace the taskID with the actual Id that you want to display in the link.

Hope this helps :slight_smile:

1 Like