You are currently viewing the XML section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
Can anyone help me out.... i am not able to decide whether
this works or not...
i have multiple html docs which needs to be converted to single PDF document using
XSL ...is this possible....
Do we need to make a single html document manually and then convert to XSL-FO doc and then to PDF
Well XSLT has the document function http://www.w3.org/TR/xslt#document to deal with multiple input documents for a single transformation.
On the other hand you seem to want to transform HTML documents and not XML documents so you need to make sure you use a HTML parser in your tool chain that is able to parse HTML and pass the result on to the XSLT processor. With Java you can use TagSoup and Saxon to do that, Saxon has an option to allow that: http://www.saxonica.com/documentatio...mand-line.html