How to send hyperlinks to Zoho CRM

How to send hyperlinks to Zoho CRM

Hi,

I'd like to send hyperlinks from Creator to CRM (in a multiline text field).

The result in CRM is :
  1. <a target="_blank" href="https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=454220000000064827">Clic here</a>
And when I clic on edit (in CRM), I get it :
  1. &lt;a target="_blank" href="https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=454220000000064827"&gt;Clic here&lt;/a&gt;
This is working well when I copy-paste this code directly in CRM, but it desappear when I come back:

  1. <a target="_blank" href="https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=454220000000064827">Clic here</a>


My code in Creator is :
  1.         strContactID = a.Zoho_ID.toString();
  2.         strURL = (("<a target=\"_blank\" href=\"https://creator.zoho.com/account/app/view-perma/Actions_view/Zoho_ID=") + a.Zoho_ID) + "\">Cliquer ici</a>";
  3.         resp = zoho.crm.updateRecord("Contacts", strContactID, { "Détails, accès aux campagnes" : strURL });

What is the best way to have it work ?

Thanks for any tips.

Pascal Veilleux