
What's the difference between XSLT and XSL-FO? - Stack Overflow
Apr 11, 2009 · What about the Wikipedia definition? XSL Formatting Objects, or XSL-FO, is a markup language for XML document formatting which is most often used to generate PDFs. XSL-FO is part …
when to use xsl:if and when to use xsl:choose/xsl:when in XSLT
Sep 11, 2013 · an xsl:choose will always select exactly one of the available xsl:when or xsl:otherwise The children of the element are tested, in order from top to bottom, until a test attribute on one of …
In what order do templates in an XSLT document execute, and do they ...
Oct 7, 2009 · Here is something that has always mystified me about XSLT: In what order do the templates execute, and When they execute, do they match on (a) the original source XML, or (b) the …
How to implement if-else statement in XSLT? - Stack Overflow
Nov 29, 2012 · Learn how to implement if-else statements in XSLT using templates and conditional expressions for efficient XML transformations.
xslt - Conditional AND OR two different values - Stack Overflow
Mar 28, 2011 · I have a concatenation of AND and OR for 2 different variables. And I tried the following:
xslt - How to concatenate data in XSL? - Stack Overflow
Apr 17, 2015 · Learn how to concatenate data using XSLT with examples and solutions provided by the Stack Overflow community.
xml - xsl: how to split strings? - Stack Overflow
Jan 30, 2011 · <xsl:value-of select="address"/> and I would like to modify this XSLT fragment to split on semicolon. update: Apparently the answer involves the use of <xsl:call-template> and the functions …
Can you put two conditions in an xslt test attribute?
Nov 25, 2008 · Learn how to use multiple conditions in an XSLT test attribute effectively with examples and expert advice on Stack Overflow.
what's the relationship between XSL and XSLT - Stack Overflow
Jan 9, 2014 · XSL Formatting Objects (XSL-FO): an XML language for specifying the visual formatting of an XML document the XML Path Language (XPath): a non-XML language used by XSLT, and also …
xslt - What are the differences between 'call-template' and 'apply ...
With <xsl:apply-templates> the current node moves on with every iteration, whereas <xsl:call-template> does not change the current node. I.e. the . within a called template refers to the same node as the . …