module Roda::RodaPlugins::H::InstanceMethods

def h(string)

HTML escape the input and return the escaped version.
def h(string)
  CGI.escapeHTML(string.to_s)
end

def h(string)

def h(string)
  string.to_s.gsub(ESCAPE_HTML_PATTERN){|c| ESCAPE_HTML[c] }
end