The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

XML::Toolset::Document - An object which represents an XML document which knows about an XML::Toolset implementation which can perform operations on it.

SYNOPSIS

use XML::Toolset::Document;
my $xml = <<EOF;
<hello world="!">
  How are you?
  <how>
    <ya doing="?" />
  </how>
</hello>
EOF
my $doc = XML::Toolset::Document->new($xml);

my $final_xml = $doc->to_string();

DESCRIPTION

An XML::Toolset::Document object represents an XML document which knows about an XML::Toolset implementation which can perform operations on it.

Sorry. There's no more documentation yet except the code.

AUTHOR

Stephen Adkins <spadkins@gmail.com>

COPYRIGHT

(c) 2007 Stephen Adkins, for the purpose of making it Free. This is Free Software. It is licensed under the same terms as Perl itself.