Subject: Re: A very simple question
From: Mike Brown <mike@xxxxxxxx>
Date: Mon, 23 Oct 2000 17:58:22 -0400 (EST)
|
Mike Brown wrote:
> For example, you could use an XSLT processor to transform 'text' and 'i'
> XHML elements into 'p' and 'i' HTML elements:
> [...]
> <xsl:template match="text">
> <xsl:copy-of select="."/>
> </xsl:template>
Sorry, I meant
<xsl:template match="text">
<p>
<xsl:copy-of select="*|text()"/>
</p>
</xsl:template>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|