I know that a language is extensible if it allows users to create any tags needed and then describing those tags and their permitted uses.
If I'm not wrong, in this example
code:
<!ELEMENT people_list (person)*>
<!ELEMENT person (name, birthdate?, gender?, socialsecuritynumber?)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT birthdate (#PCDATA)>
<!ELEMENT gender (#PCDATA)>
<!ELEMENT socialsecuritynumber (#PCDATA)>
The DTD is defining an element (tag) called person, another element called name etc...
So, why this is not extensible as XSD?