Rails3 and safe nl2br !

前端 未结 3 1353
南笙
南笙 2021-02-04 05:33

I have a system for the users to be able to post comments.

The comments are grasped into a textarea.

My problem is to format the comments with br tag to replace

3条回答
  •  执念已碎
    2021-02-04 06:31

    Here's what I did:

    module ApplicationHelper
      def nl2br s
        sanitize(s, tags: []).gsub(/\n/, '
    ').html_safe end end

提交回复
热议问题