Top "Xslt-1.0" questions

Use this tag for questions specific to XSL Transformations version 1.0 and no other version.

How to copy all child nodes of any type of a template context element

I am transforming XML into HTML using XSLT. I have the following XML structure: <root> <element> &…

xslt xslt-1.0
Usage of XSLT Params; <xsl:param> & <xsl:with-param>

Please explain me how best XSLT param can be used. in terms of <xsl:param> & <xsl:…

xml xslt xslt-1.0
Can one give me the example for "mode" of template in xsl?

In <xsl:template name="temp_name" mode="mode"> What is the meaning of mode? I searched many many …

xslt xslt-1.0 xslt-2.0
Need to remove <?xml version="1.0" encoding="utf-16"?> from the xml

Hi i am generating a xml by appying the xsl to a xml input. I need the output without this …

xml xslt xpath xslt-1.0
"greater than" works but "less than" doesn't?

This works: <xsl:when test="(price &gt;= 10)"> But this doesn't (the code inside the test doesn't execute …

xslt xslt-1.0
XSLT - Looping through all child nodes

Don't shoot I'm just the messenger here, but I have some xml that looks like this <XMLSnippet> <…

xml xslt-1.0
Multiply 2 numbers and then sum

I am having a difficult time trying to do something that seems like it should be really easy to do. …

xslt xslt-1.0 xslt-2.0
XSLT: If tag exists, apply template; if not, choose static value

I am new to XSLT in general so please bear with me... With that in mind, what I am trying …

xml xslt xslt-2.0 xslt-1.0
Why does XSLT output all text by default?

Hi I had performed a transformation which drops a tag if it is null. I wanted to check whether my …

xslt xslt-1.0 xslt-2.0
Need variable value as element name using XSLT

I am converting one format of XML to another and I need to insert an element and name it with …

xslt xslt-1.0 xslt-2.0