So I have a huge HTML Table, some of which I've inserted here below:
<thead>
<tr class="tableizer-firstrow">
<th>Name</th>
<th>Language</th>
<th>Pages</th>
<th>Author</th>
<th>Publisher</th>
<th>Category</th>
<th>Class 1</th>
<th>Class 2</th>
<th>Class 3</th>
<th>Class 4</th>
<th>Class 5</th>
<th>Class 6</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sarvanna Shikshan- Swapna Navhe Hakka!</td>
<td>Marathi</td>
<td>64</td>
<td>Vinaya Deshpande</td>
<td>Bharat Gyan Vigyan Samuday (BGVS) Maharashtra</td>
<td>Uncategorized</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Apalya Gavat Aple Arogya</td>
<td>Marathi</td>
<td> </td>
<td>-</td>
<td>Cehat Pune</td>
<td>Uncategorized</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
I have thousands of rows, but what I want for each row is something like this
<tr>
<td class="name">Sarvanna Shikshan- Swapna Navhe Hakka!</td>
<td class="Language">Marathi</td>
<td class="Pages">64</td>
<td class="Author">Vinaya Deshpande</td>
<td class="Publisher">Bharat Gyan Vigyan Samuday (BGVS) Maharashtra</td>
<td class="Category">Uncategorized</td>
<td class="Class 1"> </td>
<td class="Class 2"> </td>
<td class="Class 3"> </td>
<td class="Class 4"> </td>
<td class="Class 5"> </td>
<td class="Class 6"> </td>
</tr>
Is there any way I can insert this for all of the cells? Maybe a search and replace which acts on every 13th iteration or something like that? There's no way I'll be able to do this manually anyway. Sorry if it's in the wrong topic, I'm not very familiar with Stackoverflow.