Folgendes ist das Modell. Ich habe bereits RedCloth ((4.2.2) und acts_as_textiled Plugin on Rails 2.3.2Nur der Link wird mit Acts_as_textile Plugin in Schienen versaut?
class Post < ActiveRecord::Base
acts_as_textiled :content
end
Jetzt von der Konsole installiert:
[Staging]>> post = Post.new(:title => 'the post title', :content => 'the link is "linked":http://www.cc.com', :user_id => 1)
=> #<Post id: nil, title: "the post title", content: "the link is \"linked\":http://www.cc.com", user_id: 1, comments_count: 0, published_at: nil, created_at: nil, updated_at: nil>
[Staging]>> post.content
=> "<p>the link is “linked”:<a href=\"http://www.cc.com\">http://www.cc.com</a></p>"
[Staging]>> post.save
=> true
[Staging]>> post.content
=> "<p>the link is “linked”:<a href=\"http://www.cc.com\">http://www.cc.com</a></p>"
[Staging]>> post.content = '_simple_'
=> "_simple_"
[Staging]>> post.save
=> true
[Staging]>> post.content
=> "<p><em>simple</em></p>"
[Staging]>> post.content = "This is *cool*"
=> "This is *cool*"
[Staging]>> post.content
=> "<p>This is <strong>cool</strong></p>"
[Staging]>> post.textiled = false
=> false
[Staging]>> post.content = "This is *cool*"
=> "This is *cool*"
[Staging]>> post.content
=> "This is *cool*"
[Staging]>> post.textiled = true
=> true
[Staging]>> post.content
=> "<p>This is <strong>cool</strong></p>"
Alle Textil-Codes funktioniert mit Ausnahme der Verbindung wird verkorkste Warum. wie in der Werbung ??, dass Verweis nicht
=> "<p>the link is “linked”:<a href=\"http://www.cc.com\">http://www.cc.com</a></p>"
der Link wird mit ihr mit dem Link selbst ?? Was ist falsch gespeichert formatiert?