How do I render a string into html?
For example s = "x < y"; render(s) should become "x < y".
This works but it’s a little verbose:
using HypertextLiteral
let io = IOBuffer()
print(io, HypertextLiteral.Result(HypertextLiteral.content(s)))
seekstart(io)
read(io, String)
end
"x < y"