Search notes:

Perl module XML::Tidy

use warnings;
use strict;

use XML::Tidy;

use File::Copy;

copy('messy.xml', 'messy.copy.xml');


my $xml_tidy = XML::Tidy->new(filename => 'messy.copy.xml');
$xml_tidy -> tidy();
$xml_tidy -> write();
Github repository PerlModules, path: /XML/Tidy/script.pl
Perl modules.

Index