私は Rails にかなり慣れていないため、次の関数をどのように実装できるかについて 100% 確信が持てません。私の Rails アプリでは、ユーザーは投稿を作成してそれらの投稿にコメントできますが、ユーザーが作成したコメントにテキストだけでなく URL も入力した場合、クリック可能な URL を表示するにはどうすればよいですか。これが私の投稿show.html.erb
テンプレートです。
<div class="page-header">
<h4>All Comments</h4>
</div>
<% @post.newest_comments.each do |comment| %>
<div class="comments">
<h5><%= comment.body %></h5>
<li>
<small class="muted">
posted by <%= link_to comment.creator.username %> <%= time_ago_in_words(comment.created_at) + ' ago' %>
<% if logged_in? && (comment.creator == current_user) %> |
<%= link_to 'edit', edit_post_comment_path(@post, comment) %> |
<i class="icon-user icon"></i>
<% end %>
</small>
</li>
</div>
<% end %>