How can i define an element in a DTD so that it's values must conform to a date syntax, e.g. "yyyy-MM-dd"?
<!ELEMENT changedat (#PCDATA)>
is the usual definition, but that just says that an element <changedat> has string characters. Are there any additional parameters you can set in the DTD so that the element values are checked for specific formats?