I develop a web app where users can post text, images, Files a post text can contain links also, for example
this is my webpage link: https://demo.com/page1/home
I store the above text in the database and I want to make
https://demo.com/page1/home
this text is clickable.
What can I do..?
For example, I want something as follows
Comments use mini-Markdown formatting:
[link](http://example.com)
I store post text in a variable userPostObj.post_text
<mat-card-content>
<pre class="post-text">{{userPostObj.post_text}}</pre>
</mat-card-content>
as above I use mat-card to display post.