Let's assume I have a test property like that:
export class SomeComponent implements OnInit {
testing = '<strong>Just testing</strong>';
}
And I add to my test.component.html this line:
{{ testing }}
The output will be <strong>Just testing</strong>. I want it to return Just Testing. How can I do that?
You can use innerHTML for this:
<span [innerHTML]="testing"></span>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With