These following issues can be resolved by adding value into
/intranet/publish/fckconfig_publish_custom.js
If you don’t have one you need to create one.
When user paste content from MS Word, there are many unnecessary tags included. This problem can be fixed by forcing FCKEditor to always strip out all the tags and paste the content as plain text.
FCKConfig.ForcePasteAsPlainText = true ;
By default, FCKEditor will translate quote characters into HTML entities. The behavior can be turned off by adding this line into fckconfig_publish_custom.js
FCKConfig.ProcessHTMLEntities = false ;
FormatSource: When set to “true” the editor will format the XHTML when switching from WYSIWYG view to Source view, by inserting line breaks on some tags endings and indenting paragraphs, tables and lists. If you don’t want this behaviour you can turn this off:
FCKConfig.FormatSource = false ;
FormatOutput: When set to “true” the editor will format the XHTML output by inserting line breaks on some tags endings and indenting paragraphs, tables and lists. If you don’t want this behaviour you can turn this off:
FCKConfig.FormatSource = false ;
Discussion