Re: [xsl] FW: Migrating from unstructured to structured xml

Subject: Re: [xsl] FW: Migrating from unstructured to structured xml
From: "Jagdishwar B" <jagdishwar.beemanati@xxxxxxxxx>
Date: Mon, 19 Jun 2006 12:11:25 +0200
pls try the below xsl:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
	<!-- default identity translation -->
	<xsl:template match="*|comment()|processing-instruction()|text()">
		<xsl:copy>
			<xsl:apply-templates select="*|comment()|processing-instruction()|text()"/>
		</xsl:copy>
	</xsl:template>
	<xsl:template match="/body/div">
		<xsl:apply-templates select="div"/>
	</xsl:template>
	<xsl:template match="div">
		<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="/body">
		<section>
			<xsl:apply-templates/>
		</section>
	</xsl:template>
</xsl:stylesheet>

Kind regards,

Jagdishwar B.

Current Thread