I am working with some xml files which contain and/or tags. I want to transform them to html. In my XSL I am using two templates
<xsl:template match="and"> ...
I am working under java application which uses XSLT transformation. I have a lot of document() calls in it, so it is possible to have java.lang.OutOfMemory exception (which I actually have), ...