WordファイルをHTMLファイルに変換しましたが、問題があります。MS-Wordが自動的にページにスタイルを追加します。
例えば
<div align="center"></div>
<p style=""></p>
<table cellpadding="0">
<tr><img src="...."></img></tr>
</table>
次のように出力したい
<div></div>
<p></p>
<table>
<tr><img src="...."></img></tr>
</table>
imgインラインスタイルを削除したくありません。
前もって感謝します
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