|
In the following example, at the end of the Content Types section on page 4:
<element name="p">
<zeroOrMore>
<text/>
<element name="br">
</zeroOrMore>
<optional>
<text/>
</optional>
</element>
Shouldn't the "br" element be declared:
<element name="br" />
so that it is well-formed? This would match the text, which indicates that the "br" elements are themselves empty.
|