4
我的HTML頁面中有一些用於facebook和google的meta標籤,但eclipse在「屬性」和「itemprop」上顯示警告。我嘗試了不同的文檔類型,但不驗證。有沒有辦法在不禁用HTML文檔驗證的情況下襬脫警告?HTML Meta的屬性 - 標籤在eclipse中拋出警告
<!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>