I just migrated to CKEditor from Fckeditor. Now, when I look at the source after putting in something simple, like
<p>Hello</p>
After saving this, I get back
<p>
Hello</p>
This doesn't happen with fckeditor..how do I stop this from happening with ckeditor?
Thanks
<p>Hello</p>
After saving this, I get back
<p>
Hello</p>
This doesn't happen with fckeditor..how do I stop this from happening with ckeditor?
Thanks

Re: Getting Rid of Tabs and Spaces
http://help.pixelandtonic.com/brandonke ... _gsfn=true
CKEDITOR.on( 'instanceReady', function( ev ) { var blockTags = ['div','h1','h2','h3','h4','h5','h6','p','pre','ul','li','table','td','tr']; var rules = { indent : false, breakBeforeOpen : true, breakAfterOpen : false, breakBeforeClose : false, breakAfterClose : true }; for (var i=0; i<blockTags.length; i++) { ev.editor.dataProcessor.writer.setRules( blockTags[i], rules ); } });