Lesson 3 | Rules for a well-formed XML document |
Objective | List Rules for constructing well-formed XML documents. |
Rules for constructing well-formed XML Documents
Wel-formedness is essential in XML. The W3C instructs us that violations of well-formedness constraints are fatal errors.
Documents that are not well-formed will not load in a browser or will not be processed by an XML parser, according to the XML Recommendation.
Five rules for well-formed documents
<NAME><FIRST>John</FIRST></NAME>
- An empty element must be closed with
/>
.
Empty elements may be used for elements that have no content.
You may be familiar with the
<IMG>
and
<BR>
empty tags from HTML. In HTML, empty tags are not required to have closing tag in the form />. In XML, empty elements must be closed with
/>
. For example
<PURCHASE-ORDER NUMBER="1234"/>
- XML elements that have name-value pair attributes must enclose attribute values in single or double quotation marks.
For example:
<BOOK ISBN="345671">
<AUTHOR>James Gosling</AUTHOR>
</BOOK>
In this example, the
<BOOK>
element has an attribute named
ISBN
with the value
345671
.
Note that the attribute value is enclosed in double quotation marks for the document to be well-formed.
- XML elements must nest and un-nest in reverse order.
For example, the following XML document is not well-formed because it violates the rule for correctly nesting elements:
<NAME><FIRST>John</NAME></FIRST>
The correct nesting of these elements would be:
<NAME><FIRST>John</FIRST></NAME>