This is second time I encountered this space effect.
What you see here is done server side twice, all exact same thing with only exception:
Code:
out.print(" ...</a></li> ");
out.print(" ...</a></li>");
You see extra space at first line ? Without that space all gets wrong !
Result: Se
last line on this html page:
http://agrozoo.net/jsp/taxon-clouds/gobe.jsp, it contains all exact same thing
as all stuff above, except that space, mentioned in uppercode is missing.
Any comment abut that ?
EDIT:
So I looked up some of my code that basicaly compresses html,on the end of it I have:
Code:
s = s.replaceAll("</a>","</a> ");
which a bit decompress the thing otherwise the display is broken.
So I guess I should allso add:
Code:
s = s.replaceAll("</li>","</li> ");
Is there more general rule about that ?