how to use HTML with JSON with Gulp-data ? I'm using it in a static website building process with Gulp, Nunjucks and MJML
JSON
{
message:"Welcome to <span class='red'>world</span>"
}
.nunjucks file
{{ message }}
is giving this output in final HTML output
Welcome to <span class='red'>world</span>