# File lib/ramaze/helper/formatting.rb, line 146
    def nl2br(string, xhtml = true)
      br = xhtml ? '<br />' : '<br>'
      string.gsub(/\n/, br)
    end