module Roda::RodaPlugins::H::InstanceMethods

def h(string)

HTML escape the input and return the escaped version.
def h(string)
  string.to_s.gsub(ESCAPE_HTML_PATTERN){|c| ESCAPE_HTML[c] }
end