I've tried ckeditor and redactor-rails so far, and they both have critical problems. In my Rails application, users should be able to post articles with simple formatting and upload images. But none of the text editors seem to satisfy these two simple features.
ckeditor-rails: the problem is its file browser that lets users browse all the files that are uploaded to my server. Users must not be able to "browse" the images that are already stored in my server, and rather just be able to upload images inside their articles.
redactor-rails: it simply does not work: the links on the toolbar do not work, as already described in its Github's issues.
I could use ckeditor-rails if there were a way for me to remove file browser entirely and still be able to upload images. I like redactor's simple design and UI much better, but there seems to be a problem with the gem itself in its current version.
The only two features I need are 1. simple rich text formatting(just about stackoverflow's), 2. upload images inside text body.
What could be the best solution for me? I've been struggling very much, and I compromised with
- markdown (using redcarpet, allow very limited text formatting)
- carrierwave + fog (upload an attachment at the end of an article)
I appreciate any help.
Thank you.