From: sera@... (Francis Hwang) Date: 2004-02-09T06:54:25+09:00 Subject: Creating mixed content elements in REXML Say I have a string that represents an XML element that I want to embed into a REXML::Element, how would I do this? For example, if I have: xhtml_elt = REXML::Element.new( 'xhtml' ) xhtml_string = "

foo bar

" Is there a way I could get to: puts xhtml_elt.to_s =>

foo bar

Francis