TL;DR I'm a CKEditor core dev, I watched http://vimeo.com/76219173 in which CKEditor was mentioned, I'm sad now.
Disclaimer: I am a CKEditor core developer since January 2012, so I've been working nearly exclusively with contenteditable for almost two years. That made me an expert in some of fields that WYSIWYG editor deals with and gave me a decent knowledge about the rest. Although, my opinion may be biased.
I watched the video from "contenteditable: Roll for sanity" presentation by Garann Means with great interest. The contenteditable feature is a base for all WYSIWYG editors (except those with completely custom rendering system like Google Docs), but is not popular and most web developers have no idea about such thing (what on the other hand does not surprise me). What's more, those who stumble upon it quite often fall into the standard trap:
Hey, we just met and this is crazy, but we've got few hours so let's create a new WYSIWYG editor maybe!
This approach to web development pretty often results in at least decent solutions, but in this case... in complete mess.
Anyway, it was one of the points of the talk, that working with contenteditable is not as easy as it may look like. What I can say from my experience is that Garann only touched a tip of an iceberg. I would say that it was less than 5% of what a decent WYSIWYG editor has to deal with. (Actually, I wanted to write 1%, but I thought that it might look silly.) Also, note that dropping support for older browsers won't help you.
What struck me though, was Garann's attitude to CKEditor and TinyMCE. I would really like to hear what makes CKEditor so awful, because as far as I saw CKEditor actually fixes all (or most) of the issues with native contenteditable mentioned in the talk (and 90% of those beneath the see level). Don't think that my CKEditor core dev's ego was hurt - I really used to hear such comments (although, they are much less common recently). But in this case, when native contenteditable was shown as a insanely tough opponent, I really don't get the reasoning.
There was, however, one argument I can comment on. TinyMCE was mentioned as not so tiny (and CKEditor isn't so tiny too). But few slides earlier Garann showed a code which (as far as I understood, because the quality of video was poor) just wraps selection with a given element (?). This code is neither trivial, nor short, nor, I assume, complete and battle tested. Now, add a method which removes the style from given range, another one that checks if the style is already applied on the given selection and make all this somehow configurable (so different type of styles can be applied). You'll end up with at least 1kLOC (in fact it's a lot more, because another few thousand are reused from other components) in just this one feature. Now add remaining features and don't be surprised when you reach >40kLOC (there's 38kLOC of JS in the basic CKEditor package) when building a basic editor with just bold, italic, lists, links, fixed enter key, pasting, undo/redo and other fundamental functions.
To sum up - if you want to create your own, simple, jQuery based WYSIWYG editor, make sure you have a sufficient supply of antidepressants and patient boss.
Piotrek Koszulinski, @reinmarpl
Yes, people think they can wrap up a rich text editor in a day using contentEditable and execCommand. Making a rich text editor small isn't possible not until every browser starts behaving the same way and I don't think that's going to happen any time soon.
I guess both our teams have seen so called "My editor is way smaller and better than bloated CKEditor/TinyMCE". But these editors come and go. Why? Probably because they soon realize how buggy the built in functionality is and how many years it would take to work around them. I mean our two companies have been working on this problem for 10 years and we are still not finished it's a damned hard problem.
I'm also some what somewhat feed up with this constant bashing of our editors. It's ok with constructive criticism but each time I ask people ok if our editor is horrible whats wrong with it they can't answer me. I guess the problem here is that everyone want different results from a HTML editor and we will never be able to produce the perfect output for everyone since there are as many styles to HTML output as there is web developers.
Anyway, keep up the good work. TinyMCE & CKEditor is the only options for serious content authors anyway.