我正在使用Rails中的auto_link方法将纯文本中的网址转换为可点击链接。它大部分时间都很好用。
但是
google.com不会创建链接
还有其他什么可以提供更好的网址覆盖吗?或者无论如何我可以轻松地修改Rails代码以包含.com和.net而不使用http或www起始字符串?
答案 0 :(得分:0)
auto_link使用您可以覆盖的AUTO_LINK_RE。
您可以在config / initializers中放置文件
module ActionView::Helpers::TextHelper
silence_warnings do # you might need this to get rid of the warning
AUTO_LINK_RE = # your own definition here
end
end
它应该有效,但我从未尝试过。