in reply to Re^5: Scrubbing XML
in thread Scrubbing XML
Well, that's not the meat of what I asked. I asked if newlines were significant. libxml does collapse \n and \r (but apparently not others like \t and \f) to plain spaces in attributes. I'm mostly curious is if this part of the standard or a quirk in libxml's handling.
perl -MXML::LibXML -le'print XML::LibXML->new->parse_string(qq{<root a +ttr="a\nb"/>})->serialize' <?xml version="1.0"?> <root attr="a b"/>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Scrubbing XML
by ikegami (Patriarch) on Jun 02, 2011 at 17:00 UTC | |
by Jenda (Abbot) on Jun 05, 2011 at 00:34 UTC |