Method: JsDuck::Util::HTML.unescape
- Defined in:
- lib/jsduck/util/html.rb
.unescape(html) ⇒ Object
Unescapes HTML, replacing < with < …
20 21 22 |
# File 'lib/jsduck/util/html.rb', line 20 def self.unescape(html) CGI.unescapeHTML(html) end |