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