I have some meta tags for facebook and google in my HTML page, but eclipse shows a warning about itemprop properties and properties. I have tried different doctrines, but this is not confirmed. Is there a way to get rid of warnings without disabling HTML document validation?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta property="og:title" content="My Title" />
<meta property="og:description" content="My Description" />
<meta itemprop="name" content="My Title"/>
<meta itemprop="description" content="My Description"/>
</head>
</html>

source
share