xsl-list
[Top] [All Lists]

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

2008-05-16 07:30:47
Works! Thanks guys!

On Fri, May 16, 2008 at 2:10 PM, David Carlisle 
<davidc(_at_)nag(_dot_)co(_dot_)uk> 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.
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--





-- 
The Dude Abides!

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--