I am working with a wordml document. In the tag <wict> there is <w:binData> or there is some vml. Right now anything with the <w:binData> is working great. Right now I am just doing
<xsl:template match="wict">
After this I need to create a case statement. If the next tag is <w:binData> then perform like normal. Otherwise fully copy the vml node into the code. I have been trying to figure out how to test if the next tag is w:binData and am not having any luck. I need to figure out how to do that and figure out how to copy everything between <wict> if it the next tag isn't <w:binData>. Any help would be appreciated.
David
<xsl:template match="wict">
After this I need to create a case statement. If the next tag is <w:binData> then perform like normal. Otherwise fully copy the vml node into the code. I have been trying to figure out how to test if the next tag is w:binData and am not having any luck. I need to figure out how to do that and figure out how to copy everything between <wict> if it the next tag isn't <w:binData>. Any help would be appreciated.
David