我有这个HTML代码:
<span class="comma_left">“</span>
和
<span class="comma_right">”</span>
同样,两者都代表左正确的逗号
奇怪的事情,HTML5 validation抛出错误:
“A numeric character reference expanded to the C1 controls range.”
我真的不想只是避免这个错误,我该怎么办?
解决方法
C1 control range是指在
Latin-1或
Unicode code points U+0080 to U+009F映射到字节编码0x80到0x9f(128到159)的字符.Unicode认为这些是
“control characters”,这是
disallowed by the HTML5 parsing algorithm.
您的问题出现是因为您使用与定向双引号相关的Windows code page 1252编码,这与Latin-1和Unicode不兼容.您可以尝试这些兼容的变体:
>左双引号:“
or “
>右双引号:”
or ”