How to define XSLT tag for particular element only
Hi,
please see my xml below for which I m trying to generate HTML.
<section>
<title>Phonemic Awareness</title>
<img src="imagelibrary/hear.tif"></image>
<p><b>Use the Poetry Poster</b></p>
<p>Distribute it</p>
</section>
I want to apply <b> tag in XSLT where I have <p> in my XML file, but as you can see in sample XML file, I have <p><b> tag also which I don't want to be affected.. In short, I want it to be apply only to <p> tag.
Can you please help me...
|