Questions tagged [xslt-2.0]

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

XSL Transformations version 2.0, the successor to XSLT 1.0. It introduces the following features:

  • xsl:function: user defined functions that can be invoked from within XPath expressions

  • XPath extension mechanism: a formal means of invoking methods written in other languages from within an XSLT expression

  • unparsed-text-available(): checking a URL to insure that it returns text content

  • unparsed-text(): loading non-XML content into an XSLT transformation

  • Sequences: collections of atomic data types or XML objects

  • Date/Time API: functions to manipulate date formats

  • Numeric iterations: expressions that facilitate loops without recursion

  • xsl:analyze-string: text processing of a string based on a regular expression

  • xsl:next-match: allows multiple template rules to be applied to the same source node

  • xsl:result-document: send output to a file or web service

  • xsl:for-each-group: allows nodes to be organized and referenced as a group

  • Inline control keywords: XQuery extensions for iterating and conditional statements in XPath

  • xsl:character-map: map entities to some output form, to replace disable-output-escaping

  • tunnel attribute: allows pass-through of a parameter to a nested template which depends on it

There are several standalone XSLT 2.0 processors, including:

Online Training Courses

Books available online

See also:

  • Saxon CE is an implementation of XSLT 2.0 that runs in any modern browser; it includes extensions that provide declarative handling of user interaction events.

News: As of June 8th 2017, XSLT 3.0 is a Recommendation of the W3C Consortium and therefore the latest version of XSLT.


4654 questions
1
vote
2 answers

Creating translets with XSLT 2.0

I found a post, please see the IBM formum post, where it says creating pre-compiled java classes (Translets) using Apache Xalan utility transforms XML files faster than just using XSLT. I have been XSLT 2.0 but it is not working because Xalan only…
Shailesh
  • 405
  • 1
  • 5
  • 18
1
vote
1 answer

How to get the value of a node using for each and if in xpath

I am new to xpath .. I want to extract all the values of Age which is greater than 24 using for-each and if condition in xslt.
sidaray
  • 25
  • 5
1
vote
2 answers

check if there is any more node preceding in same section

I've the below type of XML structure
Here under each section there are 2 tags namely A and B…
user3872094
  • 3,269
  • 8
  • 33
  • 71
1
vote
2 answers

Calculating duration using date/timestamps in XSLT 2.0?

I'm using XSLT 2.0, and am trying to calculate the in WS-Trust messages, where there're and elements, so I need to determine the number of days, fractionally, between two date/timestamps, e.g., between: 2014-06-28T03:00:12Z and…
user555303
  • 1,146
  • 3
  • 20
  • 44
1
vote
1 answer

XML => XSLT 2.0 => HTML (date format)

I have a problem converting dates from XML document using XSLT 2.0. In HTML doc my date must look as 15-12-2006 => 15 December 2006 I'm using XSLT function "format-date" but saxon9he ignores it. XML code: ?xml version="1.0"…
1
vote
1 answer

xslt apply-templates ignore one child type

I've the below XML in my XSLT.
Non-Hong Kong companies <footnote num="123"> <para>The venerable statutory .</para> …</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 28 '14 at 07:37">asked Jul 28 '14 at 07:37</time> <a href="../../users/3872094/user3872094" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/3872094.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="user3872094" /> </a> <div class="s-user-card--info"> <a href="../../users/3872094/user3872094" class="s-user-card--link">user3872094</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">3,269</li> <li class="s-award-bling s-award-bling__gold" title="8 gold badges">8</li> <li class="s-award-bling s-award-bling__silver" title="33 silver badges">33</li> <li class="s-award-bling s-award-bling__bronze" title="71 bronze badges">71</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24865458"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24865458/how-to-store-output-of-this-for-each-loop-in-comma-separated-string" class="question-hyperlink">How to store output of this for each loop in comma separated string?</a></h3> <div class="excerpt">I have two xmls, User.xml and UIDL Rules.xml user.xml is like this.. <UI-defination> <class name="User"> <list_view> <members> <member name="code"/> <member name="creationTS"/> <member name="creator"/> <member name="displayName"/> …</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xml" class="post-tag grid--cell" title="show questions tagged 'xml'" rel="tag">xml</a> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xpath" class="post-tag grid--cell" title="show questions tagged 'xpath'" rel="tag">xpath</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 21 '14 at 12:45">asked Jul 21 '14 at 12:45</time> <a href="../../users/1898576/bhushan" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/1898576.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Bhushan" /> </a> <div class="s-user-card--info"> <a href="../../users/1898576/bhushan" class="s-user-card--link">Bhushan</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,489</li> <li class="s-award-bling s-award-bling__gold" title="3 gold badges">3</li> <li class="s-award-bling s-award-bling__silver" title="27 silver badges">27</li> <li class="s-award-bling s-award-bling__bronze" title="45 bronze badges">45</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24763268"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24763268/xslt-to-collect-xml-files-from-all-folders-of-name-9000-series-using-xslt-coll" class="question-hyperlink">XSLT: To collect xml files from all folders of name 9000 series using xslt Collection</a></h3> <div class="excerpt">Please suggest for the 'Collection' function in XSLT to fetch info from 'main.xml' from sub directories names start with 9000 series, i.e., D:/Author-Index/9001/main.xml, D:/Author-Index/9002/main.xml, D:/Author-Index/9003/main.xml,…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 15 '14 at 16:18">asked Jul 15 '14 at 16:18</time> <a href="../../users/3049413/rudramuni-tp" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/3049413.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Rudramuni TP" /> </a> <div class="s-user-card--info"> <a href="../../users/3049413/rudramuni-tp" class="s-user-card--link">Rudramuni TP</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,268</li> <li class="s-award-bling s-award-bling__gold" title="2 gold badges">2</li> <li class="s-award-bling s-award-bling__silver" title="16 silver badges">16</li> <li class="s-award-bling s-award-bling__bronze" title="26 bronze badges">26</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24753461"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24753461/merge-node-value-using-xslt-logic" class="question-hyperlink">merge node value using xslt logic</a></h3> <div class="excerpt">How to convert below xml to given output using xslt 1.0 and xslt 2.0. Please refer to given input and output............. Input:- <block> <line> <formatting> <word>text 1</word> </formatting> <formatting…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xml" class="post-tag grid--cell" title="show questions tagged 'xml'" rel="tag">xml</a> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-1.0" class="post-tag grid--cell" title="show questions tagged 'xslt-1.0'" rel="tag">xslt-1.0</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> <a href="../../questions/tagged/xslt-grouping" class="post-tag grid--cell" title="show questions tagged 'xslt-grouping'" rel="tag">xslt-grouping</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 15 '14 at 08:34">asked Jul 15 '14 at 08:34</time> <a href="../../users/3296897/luvks" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/3296897.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="LuvKS" /> </a> <div class="s-user-card--info"> <a href="../../users/3296897/luvks" class="s-user-card--link">LuvKS</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">53</li> <li class="s-award-bling s-award-bling__bronze" title="7 bronze badges">7</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24749243"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24749243/sum-value-of-percentage-attributes-in-xslt" class="question-hyperlink">Sum value of percentage attributes in XSLT</a></h3> <div class="excerpt">I am trying to sum the value of width attribute but it just concat their values here is my code XSLT <xsl:template match="//table"> <xsl:variable name="numb" type="xs:integer*"> <xsl:for-each select="tr/td[@width]"> …</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 15 '14 at 03:06">asked Jul 15 '14 at 03:06</time> <a href="../../users/2059202/ssmohaideen" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/2059202.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Ssmohaideen" /> </a> <div class="s-user-card--info"> <a href="../../users/2059202/ssmohaideen" class="s-user-card--link">Ssmohaideen</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">37</li> <li class="s-award-bling s-award-bling__bronze" title="8 bronze badges">8</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24726073"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24726073/the-select-attribute-in-xsl-apply-templates" class="question-hyperlink">the select attribute in xsl:apply-templates</a></h3> <div class="excerpt">I am trying to get back into XSL/XSLT after many years and need some help to understand some XSL that I have received as an example. The TEI-based XML file that I would like to transform, has the following schematic structure: <text> <body> …</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xml" class="post-tag grid--cell" title="show questions tagged 'xml'" rel="tag">xml</a> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card__deleted"> <time class="s-user-card--time" datetime="asked Jul 13 '14 at 18:49">asked Jul 13 '14 at 18:49</time> <div class="s-avatar s-avatar__32 s-user-card--avatar"> </div> <div class="s-user-card--info">user3834801</div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24720514"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24720514/converting-base-64-string-in-soap-response-to-pdf-using-xslt" class="question-hyperlink">Converting Base 64 string in SOAP response to PDF using XSLT</a></h3> <div class="excerpt">My requirement is to get a PDF file from one system and send it across to another. By making a webservice call I have been able to get the BASE64 encoding of the PDF file in the SOAP response. Now I need to convert this BASE64 string back to PDF and…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/pdf" class="post-tag grid--cell" title="show questions tagged 'pdf'" rel="tag">pdf</a> <a href="../../questions/tagged/base64" class="post-tag grid--cell" title="show questions tagged 'base64'" rel="tag">base64</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 13 '14 at 07:37">asked Jul 13 '14 at 07:37</time> <a href="../../users/3833768/abhijit-roy" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/3833768.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Abhijit Roy" /> </a> <div class="s-user-card--info"> <a href="../../users/3833768/abhijit-roy" class="s-user-card--link">Abhijit Roy</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">23</li> <li class="s-award-bling s-award-bling__bronze" title="3 bronze badges">3</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24705657"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>3</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24705657/split-xml-into-multiple-documents-in-java" class="question-hyperlink">Split XML into multiple documents in Java</a></h3> <div class="excerpt">I have a large number of XML documents that look like this: <root xmlns="urn:foo" xmlns:bar="urn:bar"> <Entity> <bar:field>Data</bar:field> <bar:other>Other data</bar:other> <bar:more>More data</bar:more> </Entity> <Entity> …</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/java" class="post-tag grid--cell" title="show questions tagged 'java'" rel="tag">java</a> <a href="../../questions/tagged/xml" class="post-tag grid--cell" title="show questions tagged 'xml'" rel="tag">xml</a> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 11 '14 at 20:04">asked Jul 11 '14 at 20:04</time> <a href="../../users/400723/derek" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/400723.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Derek" /> </a> <div class="s-user-card--info"> <a href="../../users/400723/derek" class="s-user-card--link">Derek</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,196</li> <li class="s-award-bling s-award-bling__silver" title="11 silver badges">11</li> <li class="s-award-bling s-award-bling__bronze" title="32 bronze badges">32</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24694069"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24694069/xslt-to-split-text-data-into-group-of-multiple-lines" class="question-hyperlink">XSLT to split text data into group of multiple lines</a></h3> <div class="excerpt">I am trying to write an XSLT code which splits the text data having multiple lines and produces an XML which contains group of multiple fixed number of lines from the text data. For example, If my input XML is like this <?xml version="1.0"…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> <a href="../../questions/tagged/xslt-grouping" class="post-tag grid--cell" title="show questions tagged 'xslt-grouping'" rel="tag">xslt-grouping</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 11 '14 at 09:09">asked Jul 11 '14 at 09:09</time> <a href="../../users/1914812/raghavendra-nilekani" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/1914812.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Raghavendra Nilekani" /> </a> <div class="s-user-card--info"> <a href="../../users/1914812/raghavendra-nilekani" class="s-user-card--link">Raghavendra Nilekani</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">396</li> <li class="s-award-bling s-award-bling__gold" title="2 gold badges">2</li> <li class="s-award-bling s-award-bling__silver" title="10 silver badges">10</li> <li class="s-award-bling s-award-bling__bronze" title="22 bronze badges">22</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-24681911"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/24681911/sorting-in-xslt-and-choosing-minimum-or-maximum-value" class="question-hyperlink">Sorting in xslt and choosing minimum or maximum value</a></h3> <div class="excerpt">Need some help in sorting and then choosing either maximum or minimum value in XSLT. Source…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/sorting" class="post-tag grid--cell" title="show questions tagged 'sorting'" rel="tag">sorting</a> <a href="../../questions/tagged/xslt" class="post-tag grid--cell" title="show questions tagged 'xslt'" rel="tag">xslt</a> <a href="../../questions/tagged/xslt-1.0" class="post-tag grid--cell" title="show questions tagged 'xslt-1.0'" rel="tag">xslt-1.0</a> <a href="../../questions/tagged/xslt-2.0" class="post-tag grid--cell" title="show questions tagged 'xslt-2.0'" rel="tag">xslt-2.0</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 10 '14 at 16:34">asked Jul 10 '14 at 16:34</time> <a href="../../users/3826280/sundante" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/3826280.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="SunDante" /> </a> <div class="s-user-card--info"> <a href="../../users/3826280/sundante" class="s-user-card--link">SunDante</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">63</li> <li class="s-award-bling s-award-bling__silver" title="1 silver badges">1</li> <li class="s-award-bling s-award-bling__bronze" title="8 bronze badges">8</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="s-pagination pager fr"> <a class="s-pagination--item" href="../../questions/tagged/xslt-2.0_page=99" rel="prev" title="Go to page 99">Prev </a> <a class="s-pagination--item" href="../../questions/tagged/xslt-2.0_page=1" rel="" title="Go to page 1">1</a> <a class="s-pagination--item" href="../../questions/tagged/xslt-2.0_page=2" rel="" title="Go to page 2">2</a> <a class="s-pagination--item" href="../../questions/tagged/xslt-2.0_page=3" rel="" title="Go to page 3">3</a> <div class="s-pagination--item s-pagination--item__clear">…</div> <a class="s-pagination--item" href="../../questions/tagged/xslt-2.0_page=99" rel="" title="Go to page 99">99</a> <div class="s-pagination--item is-selected">100</div> </div> </div> </div> </div> </div> <script src="../../static/js/stack-icons.js"></script> <script src="../../static/js/fromnow.js"></script> </body> </html>