0% found this document useful (0 votes)
17 views1 page

(Unicode) Character: &

The document provides an introduction to key constructs in XML, including that XML documents are made up of Unicode characters, have a processor that analyzes markup and passes structured information to applications, and divide characters into markup like tags delimited by < and > or entities delimited by & and ; with all else being content.

Uploaded by

Sameer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views1 page

(Unicode) Character: &

The document provides an introduction to key constructs in XML, including that XML documents are made up of Unicode characters, have a processor that analyzes markup and passes structured information to applications, and divide characters into markup like tags delimited by < and > or entities delimited by & and ; with all else being content.

Uploaded by

Sameer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

The material in this section is based on the XML Specification.

This is not an exhaustive list of all the constructs


that appear in XML; it provides an introduction to the key constructs most often encountered in day-to-day use.
(Unicode) character
By definition, an XML document is a string of characters. Almost every legal Unicode character may
appear in an XML document.
Processor and application
The processor analyzes the markup and passes structured information to an application. The
specification places requirements on what an XML processor must do and not do, but the application is
outside its scope. The processor (as the specification calls it) is often referred to colloquially as
an XML parser.
Markup and content
The characters making up an XML document are divided into markup and content, which may be
distinguished by the application of simple syntactic rules. Generally, strings that constitute markup
either begin with the character < and end with a >, or they begin with the character & and end with a ;.
Strings of characters that are not markup are content. However, in a CDATA section, the delimiters <!
[CDATA[ and ]]> are classified as markup, while the text between them is classified as content. In
addition, whitespace before and after the outermost element is classified as markup.
Tag

You might also like