Tags
Xslt1
- xsl:strip-space
18 Apr 2026
Removes whitespace-only text nodes from the specified source elements before the transformation begins processing them.
- xsl:stylesheet
18 Apr 2026
Root element of every XSLT stylesheet, declaring the version, namespace, and top-level declarations for the transformation.
- xsl:template
18 Apr 2026
Defines a template rule that fires when a node matches a pattern, or a named template that can be called explicitly.
- xsl:text
18 Apr 2026
Outputs literal text exactly as written, preserving all whitespace and optionally bypassing XML character escaping.
- xsl:transform
18 Apr 2026
Synonym for xsl:stylesheet — the root element of an XSLT stylesheet, interchangeable in every respect.
- xsl:value-of
18 Apr 2026
Outputs the string value of an XPath expression as a text node in the result tree.
- xsl:variable
18 Apr 2026
Binds a name to a value or node-set for the duration of the enclosing scope; XSLT variables are immutable once set.
- xsl:when
18 Apr 2026
Condition branch inside xsl:choose; its content is output when test evaluates to true and no earlier sibling matched.
- xsl:with-param
18 Apr 2026
Supplies a parameter value to a called or applied template, overriding that template's declared default.