I am looking for a way to tell Angular to display a value inside an expression containing markup, and actually use HTML:
{{ value }} let value = "<span>foobar</span>";
So, the value variable contains a line with markup, and I want to apply markup so that it appears on the page. Therefore, if value contains <b>test</b> , then bold text will appear on the page.
source share