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

Subject: Re: [xsl] Transform all tags into attributes with some tags omitted
From: "Philipp Kursawe" <phil.kursawe@xxxxxxxxx>
Date: Fri, 16 May 2008 16:30:18 +0200
Works! Thanks guys!

On Fri, May 16, 2008 at 2:10 PM, David Carlisle <davidc@xxxxxxxxx> wrote:
>
>     <xsl:template match="*[ . = '' ]" mode="attr"/><!-- empty -->
>
>
> or perhaps better
>
>  <xsl:template match="*[not(node())]"
>
> also a note to the original poster
>
>> How can I ommit empty tags? T
>
> and empty tag would be <> or </>, constructs not allowed in XML (but
> allowed in some cases in SGML). It's best not to use "tag" to mean
> element, especially in XSLT which has no access to the tags in a
> document at all.
>
> David
>
>
> ________________________________________________________________________
> The Numerical Algorithms Group Ltd is a company registered in England
> and Wales with company number 1249803. The registered office is:
> Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
>
> This e-mail has been scanned for all viruses by Star. The service is
> powered by MessageLabs.
> ________________________________________________________________________
>
>



-- 
The Dude Abides!

Current Thread