How to Create Tel HTML Link in Zoho Creator Report

How to Create Tel HTML Link in Zoho Creator Report

Hi 

i'm trying to create a html link so when user see this link is report he/she able to call that number .here is the Code

input.Phone_Link = "<a href=\"tel:+" + input.Phone + "\">" + input.Phone + "</a>\n";

The Only Problem is When this Number Display in Report its add the Http Prefix

<a href=" http://tel:+5566988878" rel="noreferrer">5566988878</a>

so its Doesn't work with this Http Prefix
its Should be 
 
<a href="tel:+5566988878" rel="noreferrer">5566988878</a>

Please help solve this issue.