vote up 3 vote down star
3

Is there a good ruby gem for a WYSIWYG editor that will easily work with a rails app?

flag

7 Answers

vote up 5 vote down check

Though it's certainly not a direct answer, in the past I've found I prefer to use RedCloth (or a Markdown parser if you don't enjoy Textile) and use a simple textarea with an AJAXy preview. Generally speaking, WYSIWYG editors have a long history of creating redundant tags and similar, leading to potentially broken pieces of HTML.

link|flag
I'd like to strongly recommend at least thinking about going with Textile as a solution. For a lot of cases anything complex enough you NEED a WYSIWYG editor is complex enough a WYSIWYG editor won't work well. – Cody Hatch Oct 10 '08 at 10:12
vote up 2 vote down

I'm not sure about a Ruby Gem, but TinyMCE is a customizable, generally stable WYSIWYG editor that is fairly simple to integrate w/ any project. I've used it a number of times.

link|flag
vote up 2 vote down

I use FCKEditorOnRails plugin: http://github.com/UnderpantsGnome/fckeditor_on_rails/tree/master

Note that you can generally drop in the latest version of FCKEditor without much tweaking if you're running into bugs in the older version.

link|flag
vote up 1 vote down

There is a plugin to use TinyMCE with rails, lots of information on the rails wiki.

link|flag
vote up 3 vote down

While I know this has been answered I wanted to add regarding the use of textile... I completely agree, but I'd recommend processing it in a before_save filter. Let's say you have a database field called "details" - just add one called "details_html". Then do something like this...

before_save :convert_details

def convert_details
  return if self.details.nil?
  self.details_html = RedCloth.new(self.details).to_html
end

RedCloth can get a little process heavy and if you are constantly processing the stuff on each render you're going to run into some memory issues... this will just help lower some of your needed resources.

link|flag
vote up 2 vote down

Have a look at http://livepipe.net/control/textarea for a WYSIWYG markdown editor with the AJAXY preview mentioned in the chosen answer.

link|flag
vote up 1 vote down

+1 for FCKEditor - there is a great Rails plugin that includes helpers. However it is often overkill as it features everything. In many cases something a little simpler such as jQuery's WYSIWYG editor is great for wrapping a text area input.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.