We are exporting the text created using the Editor into an MS Word document.
I am having a problem with alignment for the table cells.
eg, When a table is created in FCK Editor the html is something similar to the following,
<table cellspacing="1" cellpadding="1" width="200" align="right" border="1"><tbody><tr><td style="text-align: right">1</td></tr><tr><td style="text-align: right">1234</td></tr></tbody></table>
But the MS Word (we are using a software called Aspose word for the conversion) conversion works for the following,
<table cellspacing="1" cellpadding="1" width="200" align="right" border="1"><tbody><tr><td align=right>1</td></tr><tr><td align=right>1234</td></tr></tbody></table>
How to get around this problem ?
I am having a problem with alignment for the table cells.
eg, When a table is created in FCK Editor the html is something similar to the following,
<table cellspacing="1" cellpadding="1" width="200" align="right" border="1"><tbody><tr><td style="text-align: right">1</td></tr><tr><td style="text-align: right">1234</td></tr></tbody></table>
But the MS Word (we are using a software called Aspose word for the conversion) conversion works for the following,
<table cellspacing="1" cellpadding="1" width="200" align="right" border="1"><tbody><tr><td align=right>1</td></tr><tr><td align=right>1234</td></tr></tbody></table>
How to get around this problem ?