# File lib/xml/dom/builder.rb, line 171
    def processingInstruction(name, data)
      text
      pi = @document.createProcessingInstruction(nameConverter(name),
                                                 cdataConverter(data))
      ## PI data should not be converted
      @current.appendChild(pi)
    end