If the opening delimiter is seen by the parser, an error will
result; it should therefore be represented by an entity reference, thus:
<attlDecl>
<!ATTLIST blort
id ID #REQUIRED
rend CDATA #IMPLIED >
</attlDecl>
Alternatively, the entire element content may be enclosed in
a CDATA marked section:
<attlDecl>
<![CDATA[ <!ATTLIST blort
id ID #REQUIRED
rend CDATA #IMPLIED >
]&nil;]>
</attlDecl>
|