Commenting in XML
You can use the following syntax to add a comment In XML or HTML:
<!—This is a comment -->
An XML comment begins with the following code:
<!--
An XML comment ends with the following code:
-->
For example, consider the following code:
<object><field></field><field></field></object>
To comment this code, you use the following syntax:
<!-- object><field></field><field></field></object -->