How to convert word table to xml with customized tag
Hello all
I want to convert word table to xml with customized tag, basically I have word document with a table in it, now I want to convert that word table to some customize xml document like following snippet
HTML Code:
<table ID="testTable" width="100%">
<caption>tablecaption</caption>
<col width="33%" />
<col width="67%" />
<tbody>
<tr>
<td align = "left" valign= "bottom">test</td>
<td align = "center" valign= "bottom">test</td>
</tr>
<tr>
<td align = "left" valign= "top">abcd</td>
<td align = "left" valign= "top">cdjf</td>
</tr>
</tbody>
</table>
Now how can I create table like this using word table,
What I do right now is, I have save the file in HTML and replaced the tags to get desired output
Is there any way to achieve same output ?