infoinfostuffhere
some definition of the word
more info and notes
infoinfostuffhere
some definition of the word
more info and notes
####
Chapter
Part
:
####
use strict;
use warnings;
use XML::LibXML;
use XML::LibXSLT;
my $xml = XML::LibXML->new();
my $xslt = XML::LibXSLT->new();
my $source = $xml->parse_file('def.xml');
my $style_doc = $xml->parse_file('def.xsl');
my $stylesheet = $xslt->parse_stylesheet($style_doc);
my $results = $stylesheet->transform($source);
print $stylesheet->output_string($results);