# File lib/cgikit/element.rb, line 211
  def escaped_string( string, escape = true )
    if escape then
      string = Utilities.escape_html(string.to_s)
    end
    string
  end