Last active
August 29, 2015 13:59
-
-
Save emchateau/10636511 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@Name : .xsl | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@version : 000 | |
@creaDate : 2014/ | |
@modifDate | |
@vXslt: 2.0 | |
@autor : Emmanuel Château [email protected] | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@use : Cette feuille de style | |
@knownBugs : | |
@todo : | |
@historique : | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@gratefulness : | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
--> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" | |
xpath-default-namespace="http://www.tei-c.org/ns/1.0" | |
xmlns="http://www.tei-c.org/ns/1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
xmlns:functx="http://www.metaphoricalweb.org/xmlns/string-utilities"> | |
<xsl:output indent="yes" method="xml" encoding="UTF-8"/> | |
<xsl:strip-space elements="*"/> | |
<!-- | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@ copie à l'identique | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
--> | |
<xsl:template match="node()|@*" mode="#all"> | |
<xsl:copy> | |
<xsl:apply-templates select="node()|@*" mode="#current"/> | |
</xsl:copy> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment