Is there any possibility to output the editor textarea content without css tags?
Background:
I´ve got an pdf class which translate the following table syntax without css perfect.
<table border="1">
<tr>
<td width="200" height="30">a</td><td width="200" height="30" bgcolor="#0000FF">b</td>
</tr>
<tr>
<td width="200" height="30">b</td><td width="200" height="30">c</td>
</tr>
</table>
when the ckeditor output the html code ists like this:
<table border="1" style="width:500px">
<td style="width :200px;" >a</td>
is there any option to setup the html output to the first one?
Many thanks.