jan*_*jan 5 html eclipse validation xhtml html5
我在我的HTML页面中为facebook和google提供了一些meta标签,但是eclipse在"property"和"itemprop"上显示了警告.我尝试了不同的doctypes,但它没有验证.有没有办法摆脱警告而不禁用HTML文档的验证?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<!-- Facebook meta tags -->
<meta property="og:title" content="My Title" />
<meta property="og:description" content="My Description" />
<!-- Meta tags for google. -->
<meta itemprop="name" content="My Title"/>
<meta itemprop="description" content="My Description"/>
</head>
</html>
Run Code Online (Sandbox Code Playgroud)
