Looking to extract stripped HTML tables.
My desired output should resemble the following.
https://i.sstatic.net/J2qwI.png
Is there any technique to achieve this?
Thank you
td {
padding:5px;
border: solid black 1px;}
table {
border-collapse:collapse;}
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</table>