# File lib/xtemplate/util.rb, line 72
    def unsanitize(str)
      if( str.is_a?(SanitizedString) )
        str = str.gsub(PredefinedEntitiesRegex){|s|
          PredefinedEntity[s]
        }
        String.new(str)
      else
        str
      end
    end