Removing table,tr,td wihout no removing contents
I need help please,
i have situation that i need to remove table that is automaticly generated, but i also need to not remove contents of table.
<UL>
<table class="mytable" width="100">
<body>
<tr>
<td> <LI>MY CONTENTS 1</LI> </td>
<td> <LI>MY CONTENTS 2</LI> </td>
</tr>
<tr>
<td> <LI>MY CONTENTS 3</LI> </td>
<td> <LI>MY CONTENTS 4</LI> </td>
</tr>
</body>
</table>
</UL>
Is it any way to remove table without deleting contents, i need result !?!? :
<UL>
<LI>MY CONTENTS 1</LI>
<LI>MY CONTENTS 2</LI>
<LI>MY CONTENTS 3</LI>
<LI>MY CONTENTS 4</LI>
</UL>
Thank You for help