Re: ANY Data Type usage in DTDs

Hi,

> I have a DTD which says
>
> <!Element SubjectBlock ANY>
>  
> I want to bring in tags from another DTD under this tag and I want
> to validate the content.Can somebody help me with this?

Declare a parameter entity for the external DTD and then reference
that entity to import the DTD:

<!ENTITY % external SYSTEM 'external.dtd'>
%external;

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/

Received on Friday, 10 January 2003 05:07:54 UTC