Project

Profile

Help

Bug #4073 » personal.xsl

Octavian Nadolu, 2018-12-19 13:31

 
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:p="http://www.oxygenxml.com/ns/samples/personal"
exclude-result-prefixes="p">
<xsl:template match="/">
<root>
<xsl:apply-templates/>
</root>
</xsl:template>
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*"/>
<xsl:attribute name="border">1</xsl:attribute>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
(2-2/2)