Remove HTML Tables

<h2>Phone numbers</h2>
				<p>
				 <table width="300" border="1" cellpadding="5" style="text-align: center">
				  <tr>
					<th width="75"><strong>Name</strong></th>
					<th colspan="2"><span style="font-weight: bold;">Telephone</span></th>
				  </tr>
				  <tr>
					<td>John</td>
					<td><a href="tel:0123456785">0123 456 785</a></td>
					<td><img src="images/check.gif" alt="checked" /></td>
				  </tr>
				  <tr>
					<td>Cassie</td>
					<td><a href="tel:9876532432">9876 532 432</a></td>
					<td><img src="images/check.gif" alt="checked" /></td>
				  </tr>
				</table>
				</p>
				
<h2>Phone numbers</h2>
				<p>
				 <strong>Name</strong>
				 <span style="font-weight: bold;">Telephone</span>
				 John
				 <a href="tel:0123456785">0123 456 785</a>
				 <img src="images/check.gif" alt="checked" />
				 Cassie
				 <a href="tel:9876532432">9876 532 432</a>
				 <img src="images/check.gif" alt="checked" />
				</p>
				

Activating this option, the HTML Cleaner cuts every content out of the tables and deletes the table tags. This feature can't be used if the Replace tables with <div>'s function is active.

Read about how to generate easily tables to your HTML code.