module ActionView::Helpers::FormHelper

def form_for_with_haml_xss(*args, &block)

def form_for_with_haml_xss(*args, &block)
  res = form_for_without_haml_xss(*args, &block)
  return Haml::Util.html_safe(res) if res.is_a?(String)
  return res
end