How to Interpolate string with html using angular2. i know in angular 1.x there is $interpolate(templateString)(miniScope); but i haven't find the same for angular2.
suppose i have a template like this : Hello my name is {{name}}
and binding is like name: "<strong>Pardeep</strong>"
so i want result like
Hello my name is Pardeep
for angular2 see here but i'm unable to understand clearly
any help ?