14
|
1 <?xml version='1.0'?>
|
|
2 <!DOCTYPE doc SYSTEM "../../../lib/xml/xsl.dtd" >
|
|
3 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0" xmlns:s="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:e="http://markup.co.uk/excel" exclude-result-prefixes="xs s xpf" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:xpf="http://www.w3.org/2005/xpath-functions">
|
|
4 <xsl:strip-space elements="e:a"/>
|
|
5 <xsl:output omit-xml-declaration="yes"/>
|
|
6
|
|
7 <xsl:template match="e:a">
|
|
8 <e:a><xsl:apply-templates select="*"/></e:a>
|
|
9 </xsl:template>
|
|
10
|
|
11 <xsl:template match="e:r">
|
|
12 <xsl:apply-templates/>
|
|
13 <xsl:text> </xsl:text>
|
|
14 </xsl:template>
|
|
15
|
|
16 <xsl:template match="e:c">
|
|
17 <xsl:value-of select="if (text())
|
|
18 then
|
|
19 if (@f)
|
|
20 then translate(.,'cdens','CDENS')
|
|
21 else .
|
|
22 else ' '"/>
|
|
23 </xsl:template>
|
|
24 </xsl:stylesheet>
|