How can you prevent any automatic formatting when in CKEditor when viewing in source mode?
I like to edit HTML source code directly instead of using the WYSIWYG
I wanted to preserve newlines in my source, and the protectedSource feature works well for that. I added this to my config.js:
protectedSource
config.js
config.protectedSource = [/\r|\n/g];