XML Tutorial/Introduction/Comments — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:26, 26 мая 2010
Comments start with the string
<name nickname="007">
<first>James</first>
<!--James does not have middle name -->
<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 <!--James does not have middle name --> >
<last>Bond</last>
</name>
You can"t use the double-dash string (--)inside a comment:
<name nickname="007">
<first>James</first>
<middle></middle <!--James does -- not have middle name --> >
<last>Bond</last>
</name>