开发者

Content type vs HTML encoding

I'm bulding a site and I've set its content type to use charset UTF-8. I'm also using HTML encoding for the special characters, ie: instead of having á I've got á.

Now I wonder (still bulding the site) if it was really n开发者_如何学Goecesary to do both things. Looking for the answer I found this:

http://www.w3.org/International/questions/qa-escapes.en.php

It says that I shoud not use HTML encoding for any special characters but for >, < and &. But the reason is that escapes

can make it difficult to read and maintain source code, and can also significantly increase file size.

I think that's true but very poor argument. Is it really THE SAME thing using the escapes and the special characters?


The article is in fact correct. If you have proper UTF-8 encoded data, there is no reason to use HTML entities for special characters on normal web pages any more.

I say "on normal web pages", because there are highly exotic borderline scenarios where using entities is still the safest bet (e.g. when serving JavaScript code to an external page with unknown encoding). But for serving pages to a browser, this doesn't apply.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜