I have such problem: on the server I read data and use htmlentities on it, so my letters like ä are changed to the ä
and I want to show this as a value of the input tag, e.g.
<input type="text" ng-model="data.name" />
but here instead of ä character I see escaped version of it. If I show this value using e.g.
<span ng-bind-html="data.name"></span>
everything works.
What can I do to make it works properly?