1 | A model group is used to define an element that has mixed content or element content. |
2 | A model group is bounded by brackets, and contains at least one token. |
3 | When a model group contains more than one content token, the child elements are controlled using two logical connector operators; sequence connector `,', and choice connector `|' |
4 | <!ELEMENT element1 (a, b, c)> indicates a is followed by element b, which in turn is followed by c. |
5 | <!ELEMENT element2 (a | b | c)> indicates either one can be selected. |
6 | Combinations are possible: (a,b,(c|d)), or ((a,b,c) | d) |