[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Embedded stylesheets
- From: Michael Fitzgerald <mike@wyeast.net>
- To: xml-dev <xml-dev@lists.xml.org>
- Date: Fri, 20 Jul 2001 09:50:32 -0700
Or just:
C:\Windows\Desktop\XSLT>cat test.xml
<?xml version="1.0"?>
<?xml-stylesheet href="#myStyle" type="text/xsl"?>
<!DOCTYPE doc [
<!ATTLIST xsl:stylesheet id ID #REQUIRED>
]>
<doc xmlns:test="http://www.ascom.com/test">
<hello>Hello</hello>
<xsl:stylesheet id="myStyle"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="doc">
<out><xsl:value-of select="."/></out>
</xsl:template>
</xsl:stylesheet>
</doc>
Mike
====
Wy'east Communications http://www.wyeast.net mailto:mike@wyeast.net