in reply to Re: XML round-trip with comments and prolog
in thread XML round-trip with comments and prolog
The good news is, I can at least get a super-simple round-trip with comments:
... use XML::LibXML; my $dom = XML::LibXML->load_xml(string => $xml_doc); print $dom->toString(), "-----\n"; # works!
... so that's something. ;-)
|
---|