Looking for assistance with html encoding in angular 4. I have product records stored in a database, with the fullDescription field in this particular format:
<div align="justify"><span>
When using
<div *ngIf="product" [innerHTML]="product.fullDescription"></div>
, I'm receiving the following output:
<div align="justify"><span>
displayed as text. Is there a way to render this as innerHtml instead of plain text?
Thank you in advance.