I want to convert xslt to xsl-fo, but I'm not sure I can do this. I am trying to convert an XML list to an xsl-fo list. Can someone tell me where I can find that I have been doing Internet searches for a long time, there are not many examples of this. My XML is like that.
<p>TEXT</p> <ul> <li>Item1</li> <li>Item2</li> </ul> <p>ANOTHERTEXT</p>
I am trying to use templates for this conversion, but my templates do not work to get xsl-fo. Can someone tell me if templates work in this conversion. If they work, can show me an example, I can not find anyone. My task is to get pdf whit fop
thanks
This is part of my XML document. I got some parts of the source code in HTML, and now I am changing the HTML to XML. I am trying to convert XML (whit list) to XSL-FO with XSLT. My problem is that I cannot come up with patterns for this conversion. My last task is to get a PDF file with FOP.
thanks
UPDATE
This is my XML:
<Memoria> <name>TITLE</name> <Index>INDEX 2010</Index> <Seccion> <name>INFORMATION</name> <Contenido> <p>TEXT</p> <ul> <li>ITEM1</li> <li>ITEM2</li> </ul> <p>ANOTHER</p> </Contenido> </Seccion> </Memoria>
I am testing your solution. Thank you all.
source share