Merge pull request #3946 from akhoury/patch-3

[minor] meta tag, content-type shouldnt be escaped
v1.18.x
Barış Soner Uşaklı 9 years ago
commit fd215c774f

@ -17,7 +17,8 @@ module.exports = function(Meta) {
content: 'width=device-width, initial-scale=1.0, user-scalable=no' content: 'width=device-width, initial-scale=1.0, user-scalable=no'
}, { }, {
name: 'content-type', name: 'content-type',
content: 'text/html; charset=UTF-8' content: 'text/html; charset=UTF-8',
noEscape: true
}, { }, {
name: 'apple-mobile-web-app-capable', name: 'apple-mobile-web-app-capable',
content: 'yes' content: 'yes'
@ -124,4 +125,4 @@ module.exports = function(Meta) {
}); });
} }
} }
}; };

Loading…
Cancel
Save