Log a warning when the HTML reader encounters a nonconformant meta tag

Instead of throwing an exception and skipping the HTML file, log a
warning with a message which makes it more obvious as to what happened.
This commit is contained in:
Mark Lee 2013-11-08 14:37:07 -08:00
commit 35375b19ff
4 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,12 @@
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Article with Nonconformant HTML meta tags</title>
<meta name="summary" content="Summary and stuff" />
</head>
<body>
Multi-line metadata should be supported
as well as <strong>inline markup</strong>.
</body>
</html>