评论

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 中的注释是数据模型的一部分 :它们被解析,转发并对消费应用程序可见。