node.js: is there no way to put HTML into i18n-node JSON translation files?
问题 The question says it all. If I put HTML directly into the (JSON-formatted) translation file, like this: "test_html" : "click <a href='http://stackoverflow.com/'>here</a>", I get this in my HTML: click <a href='http://stackoverflow.com/'>here</a> I also tried combining this in my translation file: "test_html_placeholder" : "click %shere%s", With this in my HTML: <%= __('test_html_placeholder', '<a href="http://stackoverflow.com">', '</a>') %> But got similar results. The only thing I can get