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::Toolkit::App - An XML::Toolkit Application

VERSION

version 0.15

SYNOPSIS

use XML::Toolkit::App;

my $loader = XML::Toolkit::App->new( xmlns => { '' => 'MyApp' } )->loader;
$loader->parse_file( $file );
print join '', @{ $loader->render };

or

use XML::Toolkit::App;
my $builder = XML::Toolkit::App->new( xmlns => { '' => 'MyApp' } )->builder
$builder->parse_string($xml)
say $builder->render()

DESCRIPTION

SUBROUTINES / METHODS

DEPENDENCIES

Moose

AUTHOR

Chris Prather (chris@prather.org)

LICENCE

Copyright 2009 by Chris Prather.

This software is free. It is licensed under the same terms as Perl itself.