Re: [xsl] Transform all tags into attributes with some tags omitted

Subject: Re: [xsl] Transform all tags into attributes with some tags omitted
From: Michael Ludwig <mlu@xxxxxxxxxxxxx>
Date: Fri, 16 May 2008 10:22:15 +0200
Philipp Kursawe schrieb:
Seems to work pretty good. However I do wanna ignore the tags
described in the exceptions list. So I guess I just comment out the
applying of the identity template?

Yes, comment that out, or define:


<xsl:template match="MEINS | PACKGROESSE" mode="attr"/>

Which is the same thing. You can define whatever transform you want
inside the template, or none at all.

Michael

Current Thread