I want make a xslt transformation to xsl-fo but I´m not really sure that I can do this. I try to convert a XML list to a xsl-fo list. Can anyone tell me where can i look for I´m googling for a long time are there aren´t a lot of examples of this. My XML is like this.
<p>TEXT</p>
<ul>
<li>Item1</li>
<li>Item2</li>
</ul>
<p>ANOTHERTEXT</p>
I try use templates for this transformation but my templates don't work to get xsl-fo Can anybody tell me if the templates work in this transformation. If they work can show me an example i can't find anyone. My objetive is get a pdf whit fop
Thanks
This is part of my XML document I recived some parts of the source in HTML and I change HTML to XML now I try convert XML (whit a list) into XSL-FO whit a XSLT. My problem is that I can´t aply templates to this transformation. My final objetive is get a pdf whit 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'm testing your solution Thanks all