i've a xml that looks like the below
<doc>
<header>
<keyword>
<word>hello</word>
<word>hi</word>
</header>
<section>
...
</section>
</doc>
without the <keyword> node, my existing XSL stylesheet can display the <doc>. but now i want to display it such that such each keyword will be underlined.
any suggestion from anyone, or is that any reference i can refer to?
i only know how to use
<xsl:variable name='theword' select='/doc/header/keyword/word'/>
but that is only for one keyword.
<doc>
<header>
<keyword>
<word>hello</word>
<word>hi</word>
</header>
<section>
...
</section>
</doc>
without the <keyword> node, my existing XSL stylesheet can display the <doc>. but now i want to display it such that such each keyword will be underlined.
any suggestion from anyone, or is that any reference i can refer to?
i only know how to use
<xsl:variable name='theword' select='/doc/header/keyword/word'/>
but that is only for one keyword.