I'm trying to scrape some data from the generated overview.html files to convert it to markdown tables and noticed that the HTML isn't valid.
For example the raw HTML code of https://libraries.openmodelica.org/branches/overview.html has a lot of issues: https://validator.w3.org/
My issue are the broken tables missing a </tr> to close a table row:
<table>
<tr>
<th>Branch</th>
<th>Total</th>
<th>Parsing</th>
<th>Frontend</th>
<th>Backend</th>
<th>SimCode</th>
<th>Templates</th>
<th>Compilation</th>
<th>Simulation</th>
<th>Verification</th>
<tr>
<td><a href="omc-stable/MyLibrary_main/MyLibrary_main.html">omc-stable</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>2</a></td>
<td><a>1</a></td>
</tr>
</table>
I'm trying to scrape some data from the generated overview.html files to convert it to markdown tables and noticed that the HTML isn't valid.
For example the raw HTML code of https://libraries.openmodelica.org/branches/overview.html has a lot of issues: https://validator.w3.org/
My issue are the broken tables missing a
</tr>to close a table row: