Reputation: 4334
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 ?
Upvotes: 2
Views: 1385
Reputation: 4371
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.
Upvotes: 1