⚲
Project
Profile
Help
Tour this page
Frequent Planio Questions
Learning Resources
Sign in
Register
Switch Planio account
Open in Planio App
Share current page
Search
:
Projects
All Projects
Help
Tour this page
Frequent Planio Questions
Learning Resources
Sign in
Register
Switch Planio account
Open in Planio App
Share current page
Saxon
Overview
Roadmap
Issues
Calendar
Blog
Documents
Forums
Files
Repository
Download (910 Bytes)
Bug #2573
» a.xsl
Sample XSL -
Vinit Varghese
, 2016-01-07 01:07
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY lsaquo "‹">
<!ENTITY rsaquo "›">
<!ENTITY laquo "«">
<!ENTITY raquo "»">
<!ENTITY copy "©">
]>
<xsl:stylesheet
version=
"3.0"
xmlns:xsl=
"http://www.w3.org/1999/XSL/Transform"
xmlns:xs=
"http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes=
"xsl xs"
>
<xsl:output
method=
"html"
encoding=
"UTF-8"
version=
"5.0"
/>
<xsl:strip-space
elements=
"*"
/>
<xsl:template
match=
"/document"
>
<xsl:apply-templates
mode=
"copy"
/>
</xsl:template>
<xsl:template
match=
"table[@class='vv']"
mode=
"copy"
>
<div
class=
"row"
>
<xsl:for-each-group
select=
"tr"
group-by=
"td[1]/text()"
>
<xsl:sort/>
test
</xsl:for-each-group>
</div>
</xsl:template>
</xsl:stylesheet>
« Previous
1
2
Next »
(2-2/2)
Loading...