method
write_instruction

write_instruction( node, output )
protected
Hide source
# File lib/rexml/formatters/default.rb, line 104 def write_instruction( node, output ) output << Instruction::START output << node.target content = node.content if content output << ' ' output << content end output << Instruction::STOP end