I created a solid-js application where it is possible to create posts. I would like to ensure that when the user inserts a url link in his post that this link can be used and thus led to another web page when clicked. I would therefore like my application to be able to recognize a url in a content and turn it into a link. However, I don't know how to go about it, currently when the user inserts a url address in his post; this address is displayed in the post as a normal text namely in black and white and leads nowhere. I tried searching the internet for the solution but nothing about it. Here is my solid-js code:
<Show when={merged.content}>
<section className="px-4 py-4 flex flex-col space-y-2">
<p className="text-[.9375rem] text-gray-700 dark:text-gray-200">
{merged.content}
</p>
</section>
</Show>
Looking forward to your answers, thanks!