我已经将 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