If I click "Source" and enter:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>中文</title>
</head>
<body>
helloworld
</body>
</html>
then save the results, and view it again - by clicking "Source" again, I get:
<html>
<head>
<title>中文</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<p>helloworld</p>
</body>
</html>
The position of <title> and <meta> tags are all being changed.
Then, it is a problom that the charset of title is not utf-8, so that the page empty.
I'm using 2.4.3.
Wed, 04/02/2008 - 07:47
#1
Re: chareset of title and meta tag