class AutoHtml::HtmlEscape

HTML escape filter

Public Instance Methods

call(text) click to toggle source
# File lib/auto_html/html_escape.rb, line 8
def call(text)
  CGI.escapeHTML(text)
end