0
html属性に含まれるギリシャ語の文字を除いてすべてがギリシャ文字でうまく動作しています。html属性でのgrailsエンコード
のGrails:1.3.7 Config.groovy:
grails.views.default.codec = "none" // none, html, base64
grails.views.gsp.encoding = "UTF-8"
grails.converters.encoding = "UTF-8"
私のテストhtmlページ以下の通りです:
<%@ page contentType="text/html;charset=UTF-8" %>
<html>
<head>
<title>Test title</title>
<meta name="keywords" content="ελληνικό τεστ"/>
</head>
<body>
Greek Test Encoding
</body>
</html>
サーバーの応答は次のとおりです。
<html>
<head>
<title>Test title</title>
<meta name="keywords" content="ελληνικό τεστ"/>
</head>
<body>
Greek Test Encoding
</body>
</html>
ギリシャ文字をcontent属性内に表示できないのはなぜですか?