# File nqxml/writer.rb, line 90
 def startAttribute(name)
	    if !@inStartTag
		raise WriterError.new('attribute outside of tag start')
	    end
	    @io << " #{name}=\"
	    @inStartTag = false
	end