I'm using the "Dean's FCKEditor For Wordpress" v.3.3.1 and when I switch to source mode and insert the article code into the box when I save the blog post it removes the HTML formating. I tried "Paste as Text" in the editor but shows the HTML output verbatim. There should be a "Paste as HTML" button but there is nothing.
Does anyone know a way to preserve the Encoded output using Dean's FCKEditor?
One suggestion I found the the Web but still strips out HTML code and encoded characters out of the blog post. I tried editing the file /wp-content/plugins/fckeditor-for-wordpress-plugin/ckeditor/config.js and added these entries.
config.entities = false;
config.entities_greek = false;
config.entities_latin = false;
Example:
HTML Source:
<DIV style='padding: 5px 5px 5px 5px; border-style: dashed none dashed none; border-width: 1px;'><DIV style='background-color: FFFFCC; color: 000000;'><small><font color='FF0000'><b>TIP!</b></font> A great tip that can help you fight stress is to simply exercise. Exercising is great because it releases chemicals in your body that will make you feel better.</small></DIV></DIV>
Editor converts it to:
<div style="padding: 5px; border-style: dashed none; border-width: 1px;">
<div style=""><small><font color="FF0000"><b>TIP!</b></font> A great tip that can help you fight stress is to simply exercise. Exercising is great because it releases chemicals in your body that will make you feel better.</small></div>
</div>
Does anyone know a way to preserve the Encoded output using Dean's FCKEditor?
One suggestion I found the the Web but still strips out HTML code and encoded characters out of the blog post. I tried editing the file /wp-content/plugins/fckeditor-for-wordpress-plugin/ckeditor/config.js and added these entries.
config.entities = false;
config.entities_greek = false;
config.entities_latin = false;
Example:
HTML Source:
<DIV style='padding: 5px 5px 5px 5px; border-style: dashed none dashed none; border-width: 1px;'><DIV style='background-color: FFFFCC; color: 000000;'><small><font color='FF0000'><b>TIP!</b></font> A great tip that can help you fight stress is to simply exercise. Exercising is great because it releases chemicals in your body that will make you feel better.</small></DIV></DIV>
Editor converts it to:
<div style="padding: 5px; border-style: dashed none; border-width: 1px;">
<div style=""><small><font color="FF0000"><b>TIP!</b></font> A great tip that can help you fight stress is to simply exercise. Exercising is great because it releases chemicals in your body that will make you feel better.</small></div>
</div>