I'm creating a Javascript WYSWYG editor (yes I know a million already exist but none met my needs) and I've hit a wall.
I need only two features in my editor:
1) Users should be able to select any font size specified in pts. 2) Users should be able to have text of various sizes in the same editor window.
Sounds simple but you'd be surprised at how hard this is.
I've already looked at TinyMCE, NicEdit, FreeRichTextEditor, TinyEditor, openWYSIWYG, WYMeditor, jHtmlArea, uEditor, CLEditor, jQRTE, jQuery Simple WYSIWYG Editor, and xinha and none of them have both these features.
The only editors that I can find that meet the bill are Google Docs, CKEditor, and YUI Rich Text. Google Docs isn't an option, CKEditor is $850 and is overkill for my project, and YUI Rich Text editor is too complicated as well. I just want a dead simple editor with these two features.
This is a big roadblock to my project.
Whatever solution is found has to be lightweight and free. YUI Text Editor for example works but depends on the YUI javascript library which is too big and not easy to take apart and strip down.