How can I achieve the following ..
$scope.id = 2;
$scope.name = 'jhon';
$scope.render = "<b>{{id}} - {{name}}</b>";
..
<p ng-bind-html='render'></p>
There is something like this in php printf ('text and other% s more fill text% s a little more.', $ var1, $ var2); which would also be good if it existed in angularjs to obtain the desired result.