I've attempted to scrape HTML from a URL using '.errors' in Nokogiri, but it's not working with the following example:
<table>
<td></td>
</table>
I'm not sure why it's returning 'TRUE' as I believe it is not well-formed. The correct format should be like this:
<table>
<tr>
<td></td>
</tr>
</table>