XML Comments
XML comments are just like HTML comments. We know that the comments are used to make codes more understandable other developers.
XML Comments add notes or lines for understanding the purpose of an XML code. Although XML is known as self-describing data but sometimes XML comments are necessary.
Syntax
An XML comment should be written as:
You cannot nest one XML comment inside the another.
XML Comments Example
Let’s take an example to show the use of comment in an XML example:
Rules for adding XML comments
- Don’t use a comment before an XML declaration.
- You can use a comment anywhere in XML document except within attribute value.
- Don’t nest a comment inside the other comment.
Next TopicXML Tree