Flowdock
escape(string) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/webrick/htmlutils.rb, line 14
    def escape(string)
      str = string ? string.dup : ""
      str.gsub!(/&/, '&')
      str.gsub!(/\"/, '"')
      str.gsub!(/>/, '>')
      str.gsub!(/</, '<')
      str
    end
Register or log in to add new notes.