How to render string with html tags in Angular 4+? [duplicate] How to render string with html tags in Angular 4+? [duplicate] angular angular

How to render string with html tags in Angular 4+? [duplicate]


Use one way flow syntax property binding:

<div [innerHTML]="comment"></div>

From angular docs: "Angular recognizes the value as unsafe and automatically sanitizes it, which removes the <script> tag but keeps safe content such as the <b> element."