I have had this problem w/ two seperate WYSWYG editors in my rails application so I think it has something to do with modifying the way that the filed is being displayed.
In my Post table the field I am attempting to affect is called body. When I use the WYSIWYG editor and save it, the display from the both the index and the show views actually shows the HTML. For instance, if I make something bold in the WYSISWG editor, it will output in the view <strong>something</strong> and the associated <p> show, etc.
Is there an easy fix for this that I am missing?
which rails version do you use?
Perhaps you use h method in views <%= h post.body %> so all your html tags are escaped or you are escaping your tags in controller while saving post