application_helper.rbにあるrailshelperメソッドを使用してフォーマットされたhtml文字列を作成しようとしています。
def comment_posted_tag(actor_id,date)
... irrelevant code removed
str = "<b>" + actor_name + "</b>" + " on " + date.strftime("%d %b %Y at %H:%M")
return str.html_safe
end
私はそれをビューで次のように呼んでいます:
<%= comment_posted_tag(dialog_comment.actor_id,dialog_comment.updated_at) %>
どういうわけかタグが通っていません。理想的には、cssクラスをactor_name文字列にアタッチしたいと思います。html_safeの有無にかかわらず試してみましたが、どちらも機能しません。