How can I auto-indent XML nodes with XML::LibXML?
Asked Answered
L

2

6

I'm adding nodes to my XML document as part some in-house processing, but cannot get XML::LibXML to auto-indent the added nodes.

I get output like the following:

Here's what I'm currently getting with $xml->toString( 1 ):

                                    <nested_nodes>
                                        <nested_node>
                                        <configuration>A</configuration>
                                        <model>45</model>
                                        <added_node>
        <ID>
            <type>D</type>
            <serial>3</serial>
            <kVal>3</kVal>
        </ID>
    </added_node>
</nested_node>
                                    </nested_nodes>

What I would like to have is pretty-printed output:

                            <nested_nodes>
                                <nested_node>
                                    <configuration>A</configuration>
                                    <model>45</model>
                                    <added_node>
                                        <ID>
                                            <type>D</type>
                                            <serial>3</serial>
                                            <kVal>3</kVal>
                                        </ID>
                                    </added_node>
                                </nested_node>
                            </nested_nodes>

The optional $format parameter for the toString() method documented in XML::LibXML::Document doesn't seem to help.

Luzern answered 27/8, 2011 at 14:59 Comment(0)
M
7

I played a bit with settings and this seems to work:

use XML::LibXML;

my $doc = XML::LibXML->load_xml(string => <<END_XML, { no_blanks => 1 });
                                    <nested_nodes>
                                        <nested_node>
                                        <configuration>A</configuration>
                                        <model>45</model>
                                        <added_node>
        <ID>
            <type>D</type>
            <serial>3</serial>
            <kVal>3</kVal>
        </ID>
    </added_node>
</nested_node>
                                    </nested_nodes>
END_XML

print $doc->toString(1);

Result is this:

<?xml version="1.0"?>
<nested_nodes>
  <nested_node>
    <configuration>A</configuration>
    <model>45</model>
    <added_node>
      <ID>
        <type>D</type>
        <serial>3</serial>
        <kVal>3</kVal>
      </ID>
    </added_node>
  </nested_node>
</nested_nodes>
Monopetalous answered 28/8, 2011 at 5:28 Comment(2)
Excellent! The trick was to add the no_blanks option to both nested and added nodes. Good work @bvr!Luzern
Thank you, so much! For the reference, this works form file as well using location => $filename, { no_blanks => 1}Chasten
C
1

If you don't mind using another tool, I recommend XML::Tidy. It does one job, and it does it well.

Caras answered 27/8, 2011 at 18:21 Comment(2)
I have to stick with XML::LibXML unfortunatelyLuzern
It's not available on the target platform, and I don't want to go down the road of including the XML::Tidy source as part of my scripts.Luzern

© 2022 - 2024 — McMap. All rights reserved.