# File lib/cgikit.rb, line 2377 def escape_html( string ) string.to_s.gsub(/&/n, '&').gsub(/\"/n, '"'). gsub(/>/n, '>').gsub(/</n, '<') end