Method: Thor::Util.escape_html

Defined in:
lib/thor/util.rb

.escape_html(string) ⇒ Object

Returns a string that has had any HTML characters escaped.

Examples

Thor::Util.escape_html('<div>')   # => "&lt;div&gt;"

Parameters

String

Returns

String


280
281
282
# File 'lib/thor/util.rb', line 280

def escape_html(string)
  CGI.escapeHTML(string)
end