Comments in XML Documents

XML comments resemble HTML comments. Comments help you provide additional information about the XML code. Comments enable other developers to understand the code better. The syntax for a comment in XML is:

    <!-- This is a comment -->

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<!-- This is the first message in the document -->
   <message>
        <priority type="urgent"/>
        <to>you@yourAddress.com</to>
        <from>me@myAddress.com</from>
        <code>
        <![CDATA[<tag> content </tag>]]>
        </code>
        <subject >Car lights on</subject>
        <?cocoon-process type="xslt"?>
        <body type=" text without graphic">
         Owner of vehicle with license plate
         454-561, your lights are on!
        </body>
    </message>

Click the Next button to continue.