- or download this
use warnings; use 5.014;
our $doc = q{<?xml version="1.0" encoding="iso-8859-2" ?>
...
</verse>
};
- or download this
our %xmlopt = (
keep_spaces => 1, comments => "drop",
...
$tw->parse($doc);
}
- or download this
=begin output
...
=cut
- or download this
if (1) {
my $tw = XML::Twig->new(%xmlopt);
...
}
}
- or download this
=begin output
...
=cut
- or download this
if (1) {
my $line_handler = sub {
...
$tw->parse($doc);
}
- or download this
=begin output
...
=cut