Apologies if this has already been asked (I searched and didn't see anything related)
How do I completely disable FCK editor from reformatting my HTML code?
Basically, I am "stocking" a CMS site and there are a large number of pages which will never be edited due to their static nature and complexity.
FCK Editor is completely mangling the code, making it difficult to come back later to edit in source view.
It also keeps wrapping paragraph tags around areas where I don't want the tags.
How do I completely disable FCK editor from reformatting my HTML code?
Basically, I am "stocking" a CMS site and there are a large number of pages which will never be edited due to their static nature and complexity.
FCK Editor is completely mangling the code, making it difficult to come back later to edit in source view.
It also keeps wrapping paragraph tags around areas where I don't want the tags.

RE: Disable code reformatting?
RE: Disable code reformatting?
http://www.w3.org/TR/html4/loose.dtd
<html> <head> <title>HTML</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" > <script type="text/javascript"> window.onload=function() {alert(document.body.innerHTML)}; </script> </head> <body> <p> Hello:<br /> Today.... </p> <table style="background:#00F; border:1px solid red"> <tr> <td>1</td><td>2</td> </tr> </table> </body> </html>Re: Disable code reformatting?