評論

XML 中的註釋如下所示:

<!-- This is a comment -->

它們可以出現在元素內容或頂級:

<?xml version="1.0"?>
<!-- a comment at the top-level -->
<document>
  <!-- a comment inside the document -->
</document>

註釋不能出現在標籤內部或內部屬性中:

<element <!-- comment with -- inside --> />

要麼

<element attr="<!-- comment with -- inside -->"/>

形式不好。

字元序列 -- 不能出現在評論的中間。這不是格式良好的 XML:

<!-- comment with -- inside -->

與其他語言(如 C++)不同,XML 中的註釋是資料模型的一部分 :它們被解析,轉發並對消費應用程式可見。