Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DTD があり、いくつかの属性プロパティの可能な値を、たとえば「はい」または「いいえ」に制限したいと考えています。
<!ATTLIST node postgrad CDATA "">
それ、どうやったら出来るの?
属性 postgrad が値 yes または no を持つことができることを定義することによって:
<!ATTLIST node postgrad (yes | no)>
それはそれを行います=)