I have a DTD and I would like to limit a few attribute properties' possible values to, say, "yes" or "no".
<!ATTLIST node postgrad CDATA "">
How do I do that?
I have a DTD and I would like to limit a few attribute properties' possible values to, say, "yes" or "no".
<!ATTLIST node postgrad CDATA "">
How do I do that?
By defining that the attribute postgrad can have values yes or no:
<!ATTLIST node postgrad (yes | no)>
That will do it =)