Search Results

1
vote

How to inline CSS and javascript through XSL

XSLT 2.0 provides the unparsed-text() function to read documents via URL that are not XML. In XSLT 1.0, if you don't need to be too script about the CSS, you can use the following to make t …
3
votes

Possible to do xsl transform on dynamically generated xml?

There are three essential elements to running a multi-pass transform. <xsl:import> <xsl:apply-imports> node-set() …
6
votes

XSL variable number of child nodes…

<xsl:template match="Images/*[starts-with(name(),'Image']"> <img src="{.}" /> </xsl:template> BTW, perhaps you can't change the XML tag names, but it wou …