RichText editor custom inline hyperlinks not supported

I am using a rich text editor in my app and i want to add inline deeplinks in the format.

name://path?type=a&source=b

When i add the inline hyperlink it is automatically removed and formatted as follows without the href. Is there any workaround for this ?

"

  1. aaa
  2. jdfghjfghj
"

<a rel="noopener noreferrer" target="_blank">aaa</a>

Hello @Mahendra_Dassanayaka,

The issue you're experiencing with the hyperlink not appearing after a page refresh is due to using an incorrect default value.

To ensure hyperlinks are retained correctly in the Rich Text Editor, use a properly formatted HTML string like this in the default value:

<p><a rel="noopener noreferrer" href="https://www.google.com/search?q=grpc+api&amp;sca_esv=91e9498f46de628c&amp;sxsrf=AE3TifMVQ2UWzfIDnj6P90edNmTKUXWBxw%3A1752757626708&amp;ei=evV4aOb8Kp3M1e8PrO34wAM&amp;ved=0ahUKEwjmod79-sOOAxUdZvUHHaw2HjgQ4dUDCBA&amp;uact=5&amp;oq=grpc+api&amp;gs_lp=Egxnd3Mtd2l6LXNlcnAiCGdycGMgYXBpMgUQABiABDIFEAAYgAQyBRAAGIAEMgUQABiABDIFEAAYgAQyBRAAGIAEMgUQABiABDIFEAAYgAQyBRAAGIAEMgUQABiABEiNG1DmDVitEnABeACQAQCYAZEBoAH0BKoBAzAuNbgBA8gBAPgBAZgCBaACkATCAgcQIxiwAxgnwgIKEAAYsAMY1gQYR8ICDRAAGIAEGLADGEMYigXCAgQQIxgnwgIKEAAYgAQYQxiKBcICDRAAGIAEGLEDGEMYigXCAggQABiABBixA5gDAIgGAZAGCpIHAzEuNKAHhRuyBwMwLjS4B4sEwgcFMC40LjHIBw0&amp;sclient=gws-wiz-serp" target="_blank">Hello</a></p>

I discovered this correct format by applying a hyperlink within the editor and then inspecting the resulting value. Using that exact output as the default value ensures the hyperlink is preserved across refreshes.