2

Im a noob at perl, I was wondering if any one could help me with a task I need doing.

I have a XML file and a XSLT file, i need to use perl to some how create a html file using these two files. does any one have any ideas on where i can start, or what perl modules I can look at to help me with this ?

c11ada
  • 4,302
  • 15
  • 48
  • 62
  • 6
    [XML::LibXSLT](http://stackoverflow.com/questions/156683/what-is-the-best-xslt-engine-for-perl) seems to be a good starting point – StuartLC Sep 18 '12 at 10:27
  • Besides Perl, maybe you can get your hands on http://xmlsoft.org/XSLT/xsltproc2.html to do it. – simbabque Sep 18 '12 at 11:54

1 Answers1

1

As @StuartLC suggests, XML::LibXSLT is a good starting point. I've written a system that uses it in production on a large website. The first thing in the manual is a small example that will get you up and running.

mzedeler
  • 4,177
  • 4
  • 28
  • 41