I have a question about XML syntax. I know that the closing tag
looks like </tag>
, but what does <tag/>
mean? For example:
<a>
<b>
<c/> <-- What does it mean?
<d/>
</b>
</a>
How would this XML tree look like? Is a
only going to have b
as a child, or would b
also have c
and d
as children?