Dear Members,
A newbie question
How do I convert this XML example into HTML (using XSLT)?
Output should be:
I know some XSLT but I have trouble with the <BOLD> tags.
Thanks in advance
Elger
A newbie question
How do I convert this XML example into HTML (using XSLT)?
Code:
<DOCUMENT> <PARA> This <BOLD>is</BOLD> a <BOLD>test</BOLD> </PARA> </DOCUMENT>
Code:
<HTML> <BODY> <P> This <B>is</B> a <B>test</B> <P> </BODY> </HTML>
Thanks in advance
Elger