Hi, I have a problem processing specific nodes
XML example input:
Code:
<p>The quick brown</p>
<p PPT="Yes">Jumps over the
[list]
<li><p><b>Hedge</b></p></li>
<li><p><i>River</i></p></li>
</ul>
</P>
<p>Running</p>
in the xslt I want to process the <p PPT="Yes"> and all child entities including <p> nodes but ignore all <p> outside of it that do not have this attribute set.
so far I have had good success with everything except <p> given that in the xslt I have <xsl:template match ="p"/>
Any ideas?