1<xsl:stylesheet
2  version="1.0"
3  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5<xsl:template match="doc">
6<doc>
7<xsl:attribute name="xmlns:xsl" namespace="whatever">http://www.w3.org/1999/XSL/Transform</xsl:attribute>
8<xsl:attribute name="attr">value</xsl:attribute>
9<!--
10<xsl:attribute name="a">x
11y</xsl:attribute>
12-->
13</doc>
14</xsl:template>
15
16</xsl:stylesheet>
17