i have converted the word file in to html file, but there is a problem, the MS-word automatically adds some style to the pages.
for example
<div align="center"></div>
<p style=""></p>
<table cellpadding="0">
<tr><img src="...."></img></tr>
</table>
i want to output to be as
<div></div>
<p></p>
<table>
<tr><img src="...."></img></tr>
</table>
i dont want the img inline styles to be removed.
thanks in advance
update: if it is very hard to keep img style in the file. please give me the code excluding that part. it is very urgent for me and i cant edit 1000 pages manually