This works:
<div [innerHTML]="rssItem.title"></div>
This does not:
<input type="text" formControlName="title" [(ngModel)]="rssItem.title" name="title" #title class="form-control" [innerHTML]="rssItem.title">
Why?
I have attempted using a sanitize html pipe as explained here but it does not work for text input.
Using Angular2 version 2.4.5 on Windows.