I have a DTD and I would like to constrain the possible values โโof an attribute's properties, such as "yes" or "no".
<!ATTLIST node postgrad CDATA "">
How to do it?
By specifying that the postgrad attribute can be yes or no:
<!ATTLIST node postgrad (yes | no)>
This will do it =)