Im new to xml.xsl and I'm having a problem getting an xsl fragment page to validate to XHTML 1.0. I keep getting the error:
end tag for "img" omitted, but OMITTAG NO was specified
basically the xsl sheet reformats the output for images and removes the end />.
original:
<img src="spacer.gif" alt="" width="1" height="1" />
output
<img src="spacer.gif" alt="" width="1" height="1">
why does the ouput always remove the end tag and how do you stop it from happening?
end tag for "img" omitted, but OMITTAG NO was specified
basically the xsl sheet reformats the output for images and removes the end />.
original:
<img src="spacer.gif" alt="" width="1" height="1" />
output
<img src="spacer.gif" alt="" width="1" height="1">
why does the ouput always remove the end tag and how do you stop it from happening?