What does <! ... !> mean in XML?

Viewed 2198

What does <! ... !> mean in XML?

This <? ... ?> specifies a processing instruction according to this, but I found no information regarding the first one.

1 Answers

<! ... !> is not an XML construct due to the ending !>.

However, the following XML constructs do begin with <!:

The ending of each of the above constructions is > unless otherwise mentioned.

Related