2009-07-17 14 views
0

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 &#8220;linked&#8221;:<a href=\"http://www.cc.com\">http://www.cc.com</a></p>" 
[Staging]>> post.save 
=> true 
[Staging]>> post.content 
=> "<p>the link is &#8220;linked&#8221;:<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 &#8220;linked&#8221;:<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?

Antwort

0

Ich hatte das gleiche Problem bei der Verwendung einer älteren Version von Acts_as_textiled. Stellen Sie sicher, dass Sie die aktuellste Version aus dem Git Repository klonen erhältlich von http://github.com/defunkt/acts_as_textiled/

Nachdem ich meine Version aktualisiert, begann Links arbeiten, wie sie sollten