I don't want to recreat whole table . i need any WYSIWYG/gui/interface online/offline tool to convert already made HTML tables to highly Accessible table as much as possible.
Which IDE/web design software/WYSIWYG Editor/ has best Table editor to make accessible table?
Just for example like this table
<table>
<tr>
<td><strong>Item</strong></td>
<td><strong>Threaded screws</strong></td>
<td><strong>Flat nails</strong></td>
<td><strong>Dyna-bolts</strong></td>
<td><strong>Spring washers</strong></td>
</tr>
<tr>
<td><strong>Kilo</strong></td>
<td>$2.50</td>
<td>$3.50</td>
<td>$4.50</td>
<td>$2.50</td>
</tr>
<tr>
<td><strong>Pound</strong></td>
<td>$2.00</td>
<td>$3.00</td>
<td>$4.00</td>
<td>$2.00</td>
</tr>
</table>
to this
<table summary="Table of screws, Flat nails, Dyna-bolts and
Spring washers, in kilos and pounds">
<caption>
Pricing for screws, Flat nails and Dyna-bolts
</caption>
<thead>
<tr>
<th>Item</th>
<th id="screws" abbr="screws">Threaded screws</th>
<th id="nails" abbr="nails">Flat nails</th>
<th id="bolts" abbr="bolts">Dyna-bolts</th>
<th id="washers" abbr="washers">Spring washers</th>
</tr>
</thead>
<tbody>
<tr>
<th id="kilo">Kilo</th>
<td headers="screws kilo">$2.50</td>
<td headers="nails kilo">$3.50</td>
<td headers="bolts kilo">$4.50</td>
<td headers="washers kilo">$2.50</td>
</tr>
<tr>
<th id="pound">Pound</th>
<td headers="screws pound">$2.00</td>
<td headers="nails pound">$3.00</td>
<td headers="bolts pound">$4.00</td>
<td headers="washers pound">$2.00</td>
</tr>
</tbody>
</table>