class Nokogiri::XML::Node

def content=(string)

interpreted as markup.
Set the Node's content to a Text node containing +string+. The string gets XML escaped, not
###
def content=(string)
  self.native_content = encode_special_chars(string.to_s)
end