This is my controller file wherein
$scope.htmlCompanyFromScope = '<span style=color:red>Micro</span>';
$scope.htmlTagFromScope = "MicroTag";
My *.resx file contains
TranslationValue = "{{htmlCompany}} tag is {{htmlTag}}"
And in my HTML
I define the following:
<span translate="TranslationValue " translate-values="{htmlCompany: htmlCompanyFromScope , htmlTag: htmlTagFromScope}"></span>
But in the end, the style is not honored. Displays something like
Micro tag is MicroTag
any pointers ?