A follow up to this question: AngularJS data bind in ng-bind-html?
What if the values which I want to interpolate are attached to a ng-repeat created scope?
myDict = {'Suggestion' : $interpolate('Vote here if you think {{player.name}} is right!')($scope)
...};// $scope is wrongly passed here as 'player' is not a scope variable,
And then
<div ng-repeat="player in players">
<span ng-bind-html="myDict['Suggestion']"></span>
</div>
Is it possible to do such a thing without a custom directive?