Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

  1. 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.

  2. 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

  1. markdown (using redcarpet, allow very limited text formatting)
  2. carrierwave + fog (upload an attachment at the end of an article)

I appreciate any help.

Thank you.

share|improve this question

closed as not constructive by Deefour, Andy H, Sindre Sorhus, SztupY, Jon Egerton Feb 2 at 14:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.