Hello, I'm teaching myself XSLT and am still trying to wrap my brain around the small details. I have a template in my XSL stylesheet that looks like this...
<td><img src="{normalize-space(image)}"/></td>
which produces XHTML that looks like this...
<td><img src="somefile.jpg"></td>
How do I change my XSL template to add a trailing "/" to the img tag so that the XHTML output looks like this...
<td><img src="somefile.jpg"/></td>
Also, why does the trailing slash in the template get omitted in the output?
Thanks in advance for all your help!