Returns a string that has had any HTML characters escaped.
Thor::Util.escape_html('<div>') # => "<div>"
String
280 281 282
# File 'lib/thor/util.rb', line 280 def escape_html(string) CGI.escapeHTML(string) end