i use fckeditor under mediawiki...
i reate new page, insert table insert some text and 1 image linked to googleimages
then i save and the output is something like this:
TITLE PAGE<tbody> </tbody>
| sdfsdf | <img alt="" src="data:image/jpeg;base64,/9j/4AAQSkZCkUITAESTQgZ//Z" style="width: 238px; height: 212px;" /> |
| sfsdf | |
| sdfsdf |
instead of this:
TITLE PAGE| sdfsdf | |
| sfsdf | |
| sdfsdf |
if i click show source code button under fckeditor show me this..
<table border="1" cellpadding="1" cellspacing="1" height="145" width="329">
<tbody>
<tr>
<td>
sdfsdf</td>
<td>
<img alt="" src="data:image/jpeg;base64,/9j/4AAQSkZCkUITAESTQgZ//Z" style="width: 238px; height: 212px;" /></td>
</tr>
<tr>
<td>
sfsdf</td>
<td>
</td>
</tr>
<tr>
<td>
sdfsdf</td>
<td>
</td>
</tr>
</tbody>
</table>
<p>
</p>
the really strange think is that i add this got to to the first line
<html>
<head>
</head>
<body>
and this to the end
</body>
</html>
all working good....
