← Prev in month
← Prev in thread
Re: [xml-dev] XML2.0: Truncated End Tags (Was: Fixing what's broke)
Original Message From: "rjelliffe"
> And, in an case, there is an alternative syntax available for end-tags
> (from SGML natch), which is </>.
I really like the idea of using </> as an end tag. Comparing JSON Vs. XML
with truncated end tags you have:
"MyString":"A string",
<MyString>A string</>
and
"MyInt":123,
<MyInt>123</>
For the string XML is one character shorter, and for the number XML is one
character longer. Allowing the parser to fill in missing end tag names
would allow something like:
<MyElement>
<MyString>A string</>
<MyInt>123</>
</MyElement>
Maybe still not as pretty, but harder to knock it in terms of verbosity.
Pete Cordell
Codalogic Ltd
Interface XML to C++ the easy way using C++ XML
data binding to convert XSD schemas to C++ classes.
Visit http://codalogic.com/lmx/ or http://www.xml2cpp.com
for more info
← Prev in month
← Prev in thread