I've created a site with commenting functionality in rails but whenever a user types in a link, it is unclickable and I have to copy and paste it into the browser. Are there any simple fixes for this? Thanks for your help!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can install the rails_autolink gem, since the autolink functionality was removed from Rails in 3.1. |
|||
|
|
|
Before Rails 3.1, you can use a helper method in See this: http://apidock.com/rails/ActionView/Helpers/TextHelper/auto_link It was removed in Rails 3.1: http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html |
|||
|
|