I need your help with html encoding in angular 4. I have some product records in database, with fullDescription field in this format:
<div align="justify"><span>
Using <div *ngIf="product" [innerHTML]="product.fullDescription"></div> I'm getting the following output:
<div align="justify"><span>
as text. Is this possible to render this as the innerHtml and not as text?
Thanks in advance.