In a Go template, how can I convert a byte array to a string? One the context values I'm accessing looks like this when I print it:
[34 102 111 111 34]
This corresponds to "foo".
When I print the type of the value (by doing printf "%T" .MyValue), I see json.RawMessage, which is a []byte.
