module Roda::RodaPlugins::H::InstanceMethods

def h(s)

HTML escape the input and return the escaped version.
def h(s)
  ::Rack::Utils.escape_html(s.to_s)
end