I have an old ASP.NET application that uses the freetextbox WYSIWYG editor. But it saves a strange html (not a specific html format) to the database.
<TABLE class=mceVisualAid border=0 width=560 align=center height=395>
<TBODY>
<TR align=center>
<TD class=mceVisualAid><SPAN>
<H1 style=COLOR: rgb(0,0,0) align=center><SPAN><SPAN><SPAN><STRONG><FONT size=3><STRONG><FONT size=3><STRONG><FONT size=2><STRONG><FONT size=3> Message</FONT></STRONG></FONT></STRONG></FONT></STRONG></FONT></STRONG></SPAN></SPAN></SPAN></H1>
<H1 style=COLOR: rgb(0,0,0) align=center><SPAN><SPAN><SPAN><STRONG><FONT size=3><STRONG><FONT size=3><STRONG><FONT size=2><STRONG><FONT size=3>16 August 2013</FONT>
Now I use ckeditor WYSIWYG as an ASP.net MVC application that uses the same data that is stored in the databse, but I do not get the perfect way to render this html in the editor. My config.js ckeditor:
CKEDITOR.editorConfig = function( config ) {
config.entities = false;
config.basicEntities = false;
config.entities_greek = false;
config.entities_latin = false;
};
During rendering, it looks like this:

source
share