← Prev in month ← Prev in thread

Quiz: is this XML well-formed?

From
Roger L Costello <>
To
"" <>
Date
2021-02-04T18:18:07Z
ID
<>
Thread
Quiz: is this XML well-formed?
Hi Folks,

Is the following XML well-formed?

<altitude units="meters"reference="AGL">1000</altitude>

Scroll down to see the answer ...


























No! It is not well-formed. There must be a space before reference="AGL" like so:

<altitude units="meters" reference="AGL">1000</altitude>

But, but, but, ... Why is space required between attributes? Surely a parser can recognize the start of the next attribute given the end-delimiter of the previous attribute's value, yes?

/Roger
← Prev in month ← Prev in thread