I have a data that contains < and >, I want to show this characters avoiding the innerHTML because I have a couple of checkboxs in the label (Also the content is not HTML). The data comes from a JSON.
const labelContent = ' > 1 '; // only for desmostration
Template:
<label>
<input type="checkbox" />
{{labelContent}}
<label>
Current output:
< 1
I want to know if is possible to show this data.