jade html escaped string
问题 I have a problema with Jade, I take an unescaped string from db (something like this: "<mo>&" this string can contain some html code, I pass the string to the page with res.render('page',f(){}) from the layout I stamp the string with !{t.text} but the html code is not rendered, seems that prints plain text. where is the error? 回答1: I've set up default express app which uses jade as its template engine. Modified routes -> index.js to pass some encoded text router.get('/', function(req, res)