module Bizside module ViewHelper def html_line_break(s) ret = html_escape(s) ret.gsub(/\r\n|\r|\n/, "
").html_safe end end end