There is special built-in attribute ngNonBindable
that can be applied like:
<ng-container ngNonBindable>
Hello {{name}}, how are you?"
</ng-container>
or
<div ngNonBindable>
Hello {{name}}, how are you?"
</div>
if you have some container
Plunker Example