-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't seem to be working #38
Comments
So I just noticed that nothing is actually stored in body_html field of the DB, but the video displays correctly when showing it in the view. Is it normal that nothing is every stored in body_html field? |
Provide some info on versions you're using - ruby, rails, auto_html. |
Ah sorry, I've just seen on SO: |
Same here : I have a Model : class Post < ActiveRecord::Base
auto_html_for :content do
html_escape
image
youtube(:width => 450)
link :target => "_blank", :rel => "nofollow"
simple_format
end
end Schema : create_table "posts", :force => true do |t|
t.text "content"
t.text "content_html"
end Am I missing something ? |
Hi, auto_html_for didn't worked well with Rails 3.2.1+ It's fixed now. Please install the latest auto_html version (1.5.2). Thanks for reporting the issue. |
I am trying to get this gem to work, but nothing ever gets saved in the body_html field. I posted my question on SO, any help would be appreciated!
http://stackoverflow.com/questions/9928200/railes-auto-html-gem-is-not-working
The text was updated successfully, but these errors were encountered: