I have a fairly simple layout required.
<ul>
<li>Link</li>
</li>Link</li>
</ul
<ul>
<li>Link</link>
<li>Link</link>
</ul>
However I get:
<ul>
<li>Link</li>
</ul>
<ul>
</li>Link</li>
</ul
<ul>
<li>Link</link>
</ul>
<ul>
<li>Link</link>
</ul>
Im sorry I dont have the XSL to hand, network issues but thought id ask anyway with a brief explanation:
Essentially my xsl =
<for each select=x>
<ul>
<li>select=link</li>
</ul>
</for each>
Should I be doing:
<ul>
<for each select=x>
<li>select=link</li>
</for each>
</ul>
I also want to get a header for the list that is a result of grouping similar items,
<h3>select=header</h3>
<ul>
<for each select=x>
<li>select=link</li>
</for each>
</ul>
Am i babbling...