I have a xml file like:
<article>
<name>test</name>
<english>
<hr />
<h2>What Others Say About Us</h2>
<p>Does the world know about us? Check out these places:</p>
</english>
<french>
<hr />
<h2>What Others Say About Us</h2>
<p>Does the world know about us? Check out these places:</p>
</french>
</article>
I would like to read the file in xsl and when it comes to the english or french to display it using the html tags.
Is there a way to do this?
Adam
<article>
<name>test</name>
<english>
<hr />
<h2>What Others Say About Us</h2>
<p>Does the world know about us? Check out these places:</p>
</english>
<french>
<hr />
<h2>What Others Say About Us</h2>
<p>Does the world know about us? Check out these places:</p>
</french>
</article>
I would like to read the file in xsl and when it comes to the english or french to display it using the html tags.
Is there a way to do this?
Adam