<!ELEMENT element-name (content-model)>
|
| , | Strict order | ? | Optional element | + | One or more occurrences | * | Zero or more occurrences | | | Or | ( ) | Grouping |
<!ATTLIST element-name attribute-name
attribute-type keyword|default> |
| CDATA | Character data | ID | Unique identifier | IDREF | Reference to an existing ID | NMTOKEN | Named token | ENTITY | Entity | enummerated values | List of predefined values |
| #REQUIRED | Attribute is required | #IMPLIED | Attribute is optional | #FIXED | Attribute has a fixed value | default | Default value |
<!ENTITY entity-name
"text to expand">
|
<!ENTITY entity-name SYSTEM "url">
|
<!ENTITY % entity-name "content">
|