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

Re: WordML to XML/HTML

Subject: Re: WordML to XML/HTML
From: "Joris Gillis" <roac@xxxxxxxxxx>
Date: Sat, 05 Feb 2005 10:19:45 +0100
transform wordml to html
Tempore 03:42:31, die 02/05/2005 AD, hinc in xsl-list@xxxxxxxxxxxxxxxxxxxxxx scripsit Vasu Nanjangud <vasdeep@xxxxxxxxx>:

I have WordML data like this...
<w:r>
   <w:rPr>
	   <w:i>
         <w:u w:val="single"/>
         <w:b/>
    </w:rPr>
     <w:t>I have bold and italics and underscore
</w:t>
</w:r>
Hi,


starting from this xml: <w:r xmlns:w="specify-the-namespace-here"> <w:rPr> <w:i/> <w:u w:val="single"/> <w:b/> </w:rPr> <w:t>I have bold and italics and underscore </w:t> </w:r>

You'll get this output:
<i>
	<u>
		<b>I have bold and italics and underscore
	</b>
	</u>
</i>

When you apply this stylesheet:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:w="specify-the-namespace-here">
<xsl:output method="xml" version="1.0" encoding="UTF-8"
indent="yes"/>


<xsl:template match="w:r ">
	<xsl:apply-templates select="(w:rPr|w:t)[1]"/>
</xsl:template>

<xsl:template match="w:rPr">
	<xsl:apply-templates select="*[1]"/>
</xsl:template>

<xsl:template match="w:rPr/*">
	<xsl:element name="{local-name()}">
		<xsl:apply-templates select="(following-sibling::*|../../w:t)[1]"/>
	</xsl:element>
</xsl:template>

</xsl:stylesheet>


(note that you have to change the namespace first)



I hope this is useful I don't know wordML, so I can't guarantee this solution works in all cases.



regards,
--
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-view.cgi?userid=38041)
Veni, vidi, wiki (http://www.wikipedia.org)

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.