|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: preceding-sibling:: while keeping xml well formed
With this input:
<i>This<b>is</b>valid</i> This XSL: <?xml version="1.0" encoding="iso8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes"/> <xsl:template match="/">
<data>
<xsl:apply-templates/>
</data>
</xsl:template> <xsl:template match="text()[ancestor::i and not(ancestor::b)]">
<italic>
<xsl:copy-of select="."/>
</italic>
</xsl:template> <xsl:template match="text()[ancestor::b[ancestor::i]]">
<bolditalic>
<xsl:copy-of select="."/>
</bolditalic>
</xsl:template></xsl:stylesheet> Produces: <?xml version="1.0" encoding="UTF-8"?> <data> <italic>This</italic> <bolditalic>is</bolditalic> <italic>valid</italic> </data> It looks only for text() nodes ... something you may need to augment. --A I am using xslt to convert one xml to another importable xml. Everything is going fine except for the fact that the program I am importing into supports <italic>, and <bold>, but needs a <bolditalic> when the both are together. _________________________________________________________________ On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








