[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Generating xmlns attribute in root element

Subject: RE: Generating xmlns attribute in root element
From: Graham Hannington <Ghannington@xxxxxxx>
Date: Wed, 12 Nov 2003 11:13:32 -0000
xslt exclude xmlns attribute
I've just figured this out... spurred on by the embarrassment of having to
ask it in public ;-): 

> Can someone please post a small XSLT stylesheet that outputs a result tree
containing an xmlns attribute on the root element, similar to this?

I was "trying too hard" on my previous attempts.  All it took was an
exclude-result-prefixes, and a simple xmlns attribute in the template. Doh!

<?xml version='1.0'?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:html="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="html">
<xsl:output method="xml" version="1.0" indent="yes"
omit-xml-declaration="yes"/>

<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head/>
<body>
<ul>
<li>Any XHTML elements</li>
</ul>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.