From b4c8301596ea7a97992c168d58a078ffdea732d2 Mon Sep 17 00:00:00 2001 From: Aziz Khoury Date: Sat, 12 Dec 2015 13:07:51 -0500 Subject: [PATCH] [minor] meta tag, content-type shouldnt be escaped so `text/html; charset=UTF-8` and not `text/html; charset=UTF-8` --- src/meta/tags.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/meta/tags.js b/src/meta/tags.js index 55e5bd32d2..8495b827a6 100644 --- a/src/meta/tags.js +++ b/src/meta/tags.js @@ -17,7 +17,8 @@ module.exports = function(Meta) { content: 'width=device-width, initial-scale=1.0, user-scalable=no' }, { name: 'content-type', - content: 'text/html; charset=UTF-8' + content: 'text/html; charset=UTF-8', + noEscape: true }, { name: 'apple-mobile-web-app-capable', content: 'yes' @@ -124,4 +125,4 @@ module.exports = function(Meta) { }); } } -}; \ No newline at end of file +};