I have this code in my Template HTML
<div *ngIf="alertOptions?.texts">
<p *ngFor="let paragraph of alertOptions?.texts">
{{ paragraph }}
</p>
</div>
The Texts in my JSON are like:
Please <b>Call us</b> <a href="tel:+5798643210"> 5798643210</a>.<br>Weekends Chat with us <a href="#">Chat</a>
I Know that I need to escape the quotes in my JSON!
"alertOptions":{
"texts": [
"Please <b>Call us</b> <a href=\"tel:+5798643210\"> 5798643210</a>.<br>Weekends Chat with us <a href=\"#\">Chat</a>"
]
}
How to do that?