module Bundler::Thor::Util

def escape_html(string)


String
==== Returns

String
==== Parameters

Bundler::Thor::Util.escape_html('
') # => "<div>"

==== Examples

Returns a string that has had any HTML characters escaped.
def escape_html(string)
  CGI.escapeHTML(string)
end