Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compare TinyMCE and CKeditor for a Wiki

For a custom wiki django-wakawaka, i want to be able to add a WYSIWYG support.

TinyMCE is obviously the most popular plugin, used even by Wordpress.

But CK-editor seems more feature full.

Those who have used either of these or both, which is better and why. Are there some better packages, that I am missing?

Is there something that I am missing when I conclude CKeditor is better, by going through them (because it is not as widely used).

I want to use it with django and jquery, with multiple instances of WYSIWYG widget per page. Does one offer advantage over the other.

like image 882
lprsd Avatar asked Sep 24 '09 06:09

lprsd


People also ask

Which is better CKEditor or TinyMCE?

CKEditor is available under open-source and commercial licenses. TinyMCE is an online rich-text editor released as open-source software. TinyMCE is designed to integrate with JavaScript libraries, Vue. js, and AngularJS as well as content management systems such as Joomla!, and WordPress.

Is CKEditor good?

CKEditor is mature, accessible and has a great development team behind it. No other rich-text editor provided the same editing capabilities, performance, ease of integration, and customizations. Working with CKEditor 5 was smooth and effortless. It was a real productivity boost for us!

What is Django TinyMCE?

django-tinymce is a Django application that contains a widget to render a form field as a TinyMCE editor. Features: Use as a form widget or with a view. Enhanced support for content languages. Integration with the TinyMCE spellchecker.


1 Answers

I spent some time implementing CKEditor in the last couple days. I've implemented TinyMCE in the past as well. On the positive, it's far more consistent and bug-free than TinyMCE... by which I mean, where TinyMCE "feels" buggy, CKEditor has worked around awkward browser behavior to a much greater degree, making it "feel" much more solid. On the negative, if you want to extend it, the documentation is relatively sparse. I think this is mostly because CKEditor is relatively new (its API is very different from FCKEditor), and it would be reasonable to expect the CK 3.0 documentation to reach at least the quality of the FCK 2.0 docs soon.

like image 161
eyelidlessness Avatar answered Oct 10 '22 04:10

eyelidlessness