Merge pull request #932 from qdot/master

Change meta tag "contents" attribute to "content" to conform to HTML spec
This commit is contained in:
Justin Mayer 2013-08-03 22:40:18 -07:00
commit 122ec39a27
7 changed files with 55 additions and 16 deletions

View file

@ -331,11 +331,11 @@ interprets the HTML in a very straightforward manner, reading metadata from
<html>
<head>
<title>My super title</title>
<meta name="tags" contents="thats, awesome" />
<meta name="date" contents="2012-07-09 22:28" />
<meta name="category" contents="yeah" />
<meta name="author" contents="Alexis Métaireau" />
<meta name="summary" contents="Short version for index and feeds" />
<meta name="tags" content="thats, awesome" />
<meta name="date" content="2012-07-09 22:28" />
<meta name="category" content="yeah" />
<meta name="author" content="Alexis Métaireau" />
<meta name="summary" content="Short version for index and feeds" />
</head>
<body>
This is the content of my super blog post.