I have an XSL stylesheet with entity definition in it:
<!DOCTYPE xsl:stylesheet SYSTEM "entities.dtd">
entities.dtd contains only one definition:
<!ENTITY copy "©">
If I use © in the document having the DOCTYPE declaration, everything works fine. But when I include another XSL document and try use the entity there, XSLT-processor says that 'copy' entity is not defined.
How can I define a global DTD to use it in any included XSL stylesheet?