module Haml::Helpers
def html_escape(text)
Returns a copy of text with ampersands, angle brackets and quotes
def html_escape(text) text.to_s.gsub(/[\"><&]/) { |s| HTML_ESCAPE[s] } end
def html_escape(text) text.to_s.gsub(/[\"><&]/) { |s| HTML_ESCAPE[s] } end