Thread: Closing Tags
View Single Post
  #2  
Unread 12-06-2006, 05:51 PM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default

Standard XML...

<Page>
</Page>

Is the same as

<Page />

The later can be used when an object does not contain other objects. This applies to anything.

<Button></Button>

can be written as

<Button />

If it doesn't contain a text value.

Note: the extra space is not required so <Page/> also works.
Reply With Quote