tag?
How do I put a bit of HTML inside a tag without escaping it? Or am I using an incorrect tag?
P.S. I cannot escape the HTML, it is produced by the s
You need to escape the HTML, like so:
You can use HTML entities that are escaped and printed without compiling.
< // will print <
> // will print >
Using these two, you can print any HTML elements.
<div> // will print
To solve your specific problem, you will need to parse the HTML string and convert the chevrons to these entities.