Re: [xml-dev] (newbie) DTD question

From
Richard Tobin <>
To
Date
2002-07-12T22:57:39Z
ID
<>
Thread
Re: [xml-dev] (newbie) DTD question
In article <> you write:

>This is very interesting.  An XML document is valid if
>and only if there's a DTD that it follows, so it seems
>then that the limitations of the DTD end up
>constraining the XML document:  Tags, if reused in
>different contexts (people, pets) in a valid XML
>document, must have the same subelements and
>attributes.

No, you just can't have a very precise DTD in that case.  You could
just use:

 <!ELEMENT name ANY>

-- Richard