XML Tutorial/Introduction/Comments

Материал из Web эксперт
Перейти к: навигация, поиск

Comments start with the string

   <source lang="xml">

<name nickname="007">

   <first>James</first> 
    
   <middle></middle> 
   <last>Bond</last> 

</name> You can"t have a comment inside a tag, so the following is illegal: <name nickname="007">

   <first>James</first> 
   <middle></middle   > 
   <last>Bond</last> 

</name> You can"t use the double-dash string (--)inside a comment: <name nickname="007">

   <first>James</first> 
   <middle></middle   > 
   <last>Bond</last> 

</name></source>