newbie question - nested tags

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Elger
    New Member
    • Apr 2006
    • 1

    newbie question - nested tags

    Dear Members,

    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>
    Output should be:

    Code:
    <HTML>
    <BODY>
    <P>
    This <B>is</B> a <B>test</B>
    <P>
    </BODY>
    </HTML>
    I know some XSLT but I have trouble with the <BOLD> tags.


    Thanks in advance


    Elger
    Last edited by Dormilich; Jan 9 '09, 07:26 AM. Reason: added [code] tags
Working...