I tried to validate the following HTML code
<!DOCTYPE html>
<html>
<head>
<title>hello</title>
</head>
<body>
<p>
This is some <b>text</b>
<ul>
<li>A bullet point</li>
<li>another bullet point</li>
</ul>
</p>
</body>
</html>
It renders as expected, but the Validator throws the following error:
It looks to me that there is a proper pair <p>(...)</p>
, why the error then?
`.
– Rob Oct 24 '16 at 13:01` isn't even invalid syntax…
– deceze Oct 24 '16 at 13:06