```h3{+"a < b"}``` it display as it is rather then less then sign. how html entities can be displ...
m
Copy code
h3{+"a < b"}
it display as it is rather then less then sign. how html entities can be displayed?
s
Copy code
h3{+"a < b"}
m
thanks @spand but i want to display pre generated html code.
s
Try unsafe instead:
Copy code
h3 {
    unsafe { +"a &lt b" }
}
m
👍
c
Be very careful when you use unsafe, that's how injections happen